在C++ 17 Foo中,由于类模板参数推导,我可以在以下示例中使用而不使用空模板参数括号:
template<typename T = int>
struct Foo{};
int main(){
Foo f; // before C++17 you had to write "Foo<> f;"
}
Run Code Online (Sandbox Code Playgroud)
为什么我不允许对类成员使用相同的语法?
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;
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
147 次 |
| 最近记录: |