我有一个 C++ 模板类,它的构造函数有一个默认参数。
它可以用非默认参数实例化并作为数组吗?(如果没有,为什么不呢?)
任何一个都有效,但不能同时工作(在 g++ 4.6.3 中):
template <class T> class Cfoo {
public:
int x;
Cfoo(int xarg=42) : x(xarg) {}
};
Cfoo<int> thisWorks[10];
Cfoo<int> thisWorks(43);
Cfoo<int> thisFails(43)[10];
Cfoo<int> thisFails[10](43);
Cfoo<int>[10] thisFails(43);
// (even crazier permutations omitted)