编译器错误 C2910
“function”:不能显式专用化
编译器检测到尝试将函数显式专用化两次。
下面的示例生成 C2910:
// C2910.cpp
// compile with: /c
template <class T>
struct S;
template <> struct S<int> { void f() {} };
template <> void S<int>::f() {} // C2910 delete this specialization
如果你尝试将非模板成员显式专用化,也可能出现 C2910。 也就是说,只能将函数模板显式专用化。
下面的示例生成 C2910:
// C2910b.cpp
// compile with: /c
template <class T> struct A {
A(T* p);
};
template <> struct A<void> {
A(void* p);
};
template <class T>
inline A<T>::A(T* p) {}
template <> A<void>::A(void* p){} // C2910
// try the following line instead
// A<void>::A(void* p){}
此错误还可能来自于 Visual Studio .NET 2003 中执行的编译器一致性工作。
要使代码在 Visual Studio .NET 2003 和 Visual Studio .NET 版本的 Visual C++ 中有效,请删除 template <>
。
下面的示例生成 C2910:
// C2910c.cpp
// compile with: /c
template <class T> class A {
void f();
};
template <> class A<int> {
void f();
};
template <> void A<int>::f() {} // C2910
// try the following line instead
// void A<int>::f(){} // OK