gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-30 02:30:10 25 4
gpt4 key购买 nike

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

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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com