继承和模板的问题我的派生类无法识别 x ,它是我的基类中的成员变量。
template <class type>
class one
{
public:
type getX();
type x;
};
template <class type>
type one<type>::getX()
{
return x;
}
template <class type>
class two: public one <type>
{
public:
type getX();
};
template <class type>
type two<type>::getX()
{
return x;
}