class B{ public: template <typename X> static X var; B() { std::cout << "Create B " << __PRETTY_FUNCTION__ << std::endl; } template <typename T> voID Print() { std::cout << "Value is " << var<T> << std::endl; }};
它必须在类范围之外声明所有静态成员:
以下编译并按预期工作:
template<typename T> T B::var=9; // makes only sense for int,float,double...
但是如何将这样的var专门化为以下非工作代码(使用gcc 6.1的错误消息):
template <> double B::var<double>=1.123;
失败:
main.cpp:49:23: error: parse error in template argument List template <> double B::var<double>= 1.123; ^~~~~~~~~~~~~~~~~~main.cpp:49:23: error: template argument 1 is invalIDmain.cpp:49:23: error: template-ID 'var<<Expression error> >' for 'B::var' does not match any template declarationmain.cpp:38:22: note: candIDate is: template<class X> T B::var<T> static X var;
template <> double B::var=1.123;
失败了
template <> double B::var=1.123; ^~~main.cpp:38:22: note: does not match member template declaration here static X var;
这里的语法是什么?
解决方法 我想你应该添加一个空格template <> double B::var<double> = 1.123; ^ here
否则(如果我没错)> = 1.123与“等于或大于1.123”相混淆
总结以上是内存溢出为你收集整理的c – 成员模板变量专门化全部内容,希望文章能够帮你解决c – 成员模板变量专门化所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)