前端之家收集整理的这篇文章主要介绍了
c – “使用类模板需要模板参数列表”是什么意思?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是模板的新手所以请原谅我天真的问题.我在这段
代码中遇到
错误:
template <class t>
class a{
public:
int i;
a(t& ii):i(ii){}
};
int main()
{
a *a1(new a(3));
cout<<a1.i;
_getch();
}
编译错误:
>’a’:使用类模板需要模板参数列表
>’a’:类没有构造函数
a(t& ii):i(ii){}
这应该是:
a(const t& ii):i(ii){}
这样你就可以将const文字和临时文本传递给构造函数.
然后这样做:
a<int> *a1(new a<int>(3));
你也可以这样写:
a<int> a2(3);
原文链接:https://www.f2er.com/c/119864.html