例如,我有一个类:
class A { enum {N = 5}; double mVariable; template<class T,int i> void f(T& t) { g(mVariable); // call some function using mVariable. f<T,i+1>(t); // go to next loop } template<class T> void f<T,N>(T& t) {} // stop loop when hit N. };
我略微改变了阿恩·默兹的例子,就像:
template<int n> struct A { enum {N = n}; ... };
并使用A like:
A<5> a;
我无法在Visual Studio 2012上编译.它是编译器错误还是别的?这很奇怪
编辑:检查.它是一个Visual Studio的错误. 原文链接:https://www.f2er.com/c/112159.html