C++ 模板结构体
template<classT>structnode{Tdata;structnode<T>*lchild;structnode<T>*rchild;};template...
template <class T>
struct node
{
T data;
struct node<T> *lchild;
struct node<T> *rchild;
};
template <class T>
class bin
{
private:
node <T> h;
public:
void pri();
};
template <class T>
void bin<T>::pri()
{
node<T> *p = new node;
cout<<"qunimade"<<endl;
}
int _tmain(int argc, _TCHAR* argv[])
{
}
在主函数中什么都不写没错误,但在主函数中定义一个bin的对象,就会出错
error C2955: “bin”: 使用类 模板 需要 模板 参数列表
但是结构体在类里面定义就不会出现错误,哪位高手给解答一下
我用的VC2008 展开
struct node
{
T data;
struct node<T> *lchild;
struct node<T> *rchild;
};
template <class T>
class bin
{
private:
node <T> h;
public:
void pri();
};
template <class T>
void bin<T>::pri()
{
node<T> *p = new node;
cout<<"qunimade"<<endl;
}
int _tmain(int argc, _TCHAR* argv[])
{
}
在主函数中什么都不写没错误,但在主函数中定义一个bin的对象,就会出错
error C2955: “bin”: 使用类 模板 需要 模板 参数列表
但是结构体在类里面定义就不会出现错误,哪位高手给解答一下
我用的VC2008 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询