c++ - 模板特化静态初始化 icc+vc vs gcc+clang

标签 c++ gcc visual-c++ clang language-lawyer

看起来编译器接受不同的语法来初始化模板中的静态。

template <typename T> struct TBase
{   
    static const int i;
    static const int j;
};

// compile: gcc + clang + visual + icc
template <> const int TBase<double>::i=1;

// compile: vc + icc
// failed gcc, gcc -fpermissive, clang
const int TBase<double>::j=2;

是没有template<>的语法被标准接受,即使它目前显然不可移植?

编辑: 在 vc++ 上使用此代码 TBase<double>::i==1TBase<double>::j==2完全像没有模板的代码。

struct noTemplate 
{   
    static const int i;
    static const int j;
};
const int noTemplate::i=1; 
const int noTemplate::j=2;

gcc 和 clang 似乎强制使用 template<>初始化这个静态,我不明白为什么编译器需要这个信息。

最佳答案

这两种语法都有效,但它们的含义不同。 template<> 的语法用于声明或定义隐式或显式实例化的成员:

template<class T> struct X { static int const i; };

template<> int const X<char>::i = 1; // Define member of an implicit instantiation

template struct X<long>;
template<> int const X<long>::i = 2; // Define member of an explicit instantiation

没有template<>的语法用于定义特化的成员:

template<> struct X<float> { static int const j; }; // Class template specialization
int const X<float>::j = 3;

关于c++ - 模板特化静态初始化 icc+vc vs gcc+clang,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38884954/

相关文章:

winapi - 在 Windows 中创建现代风格的动态菜单

C++:std::unordered_map 保证是基于节点的吗?

c++ - 如何控制 gettext 系统中的翻译?

C++文本文件指针问题

c++ - 如何轻松生成具有静态存储的符号列表?

c++ - Class 对象上的多线程

c - SQLite3添加自定义功能

c - 基于 sizeof 运算符

无法使用Windows 7命令提示符和MinGW编译C程序

c - C 中的 struct 'type cast' 错误?