为什么这不起作用?
template <class T>
struct Low;
template <>
struct Low<int> {};//Here I'm trying to specialize for int
int main()
{
Low<1> a;
}
最佳答案
Low<int> a;
将起作用-您的模板采用的类型不是整数参数。
关于c++ - 无法专门化结构,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5529155/