编译器警告(等级 1)C4662

显式实例化;模板类“identifier1”无用于专用化“identifier2”的定义

已声明但未定义指定的模板类。

示例

// C4662.cpp
// compile with: /W1 /LD
template<class T, int i> class MyClass; // no definition
template MyClass< int, 1>;              // C4662