gpt4 book ai didi

c++ - 模板类=默认类什么都不做?

转载 作者:太空狗 更新时间:2023-10-29 20:13:54 26 4
gpt4 key购买 nike

我如何使它起作用?为什么 C++ 允许我编写 T=int,而它似乎完全忽略了它?

template<class T=int>
class Foo {
public:
T a;
};

int main() {
Foo f; //error: missing template arguments before ‘f’
}

最佳答案

Foo 是模板,还需要这样写:

Foo<> f;
// ^^

关于c++ - 模板类=默认类什么都不做?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18999730/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com