为什么以下代码的模板化版本不能编译,而删除(未使用)模板时会编译相同的精确代码?
不编译:
template <typename T>
class Foo {
public:
static double const vals[];
int run ();
};
template <typename T>
double const Foo<T>::vals[] = { 1, 2,3 };
template <typename T>
inline
int Foo<T>::run () {
return sizeof(vals); // error C2070: 'const double []': illegal sizeof operand
}
编译:
class Foo {
public:
static double const vals[];
int run ();
};
double const Foo::vals[] = { 1, 2,3 };
inline
int Foo::run () {
return sizeof(vals);
}
答案 0 :(得分:0)
因为Visual Studio已损坏。请参阅:http://connect.microsoft.com/VisualStudio/feedback/details/759407/can-not-get-size-of-static-array-defined-in-class-template
可能的(未经测试的)解决方法是使用以下内容:
private:
template<typename T, int size>
int get_array_length(T(&)[size]){return size;}
然后使用:
int Foo::run() {
return get_array_length(vals) * sizeof(double);
}