在C ++ 17中,由于类模板参数的推导,我可以在以下示例中使用Foo
,而无需使用空模板参数括号:
template<typename T = int>
struct Foo{};
int main(){
Foo f; // before C++17 you had to write "Foo<> f;"
}
为什么不允许类成员使用相同的语法?
template<typename T = int>
struct Foo{};
struct Foo2{
Foo f{}; ///< error: invalid use of template-name 'Foo' without an argument list
};
int main(){
Foo2 f2;
}
答案 0 :(得分:5)