参见英文答案 >
Where and why do I have to put the “template” and “typename” keywords?6个
同
同
template <typename T> class Foo { public: template <int x> void bar () {} };
以下编译:
void fooBar () { Foo<int> f; f.bar<1>(); }
但是以下内容没有(带有“错误:在’之前预期的primary-expression’)’令牌”在gcc 5.4.0中,-std = c 14).
template <typename T> void fooBar () { Foo<T> f; f.bar<1>(); }
如果我尝试显式调用第二个版本,例如
fooBar<int>();
然后gcc另外抱怨
"invalid operands of types '<unresolved overloaded function type>' and 'int' to binary 'operator<'".
有没有理由说第二个版本无效?为什么gcc处理’<'作为运算符而不是模板参数列表的开头?