即使使用默认构造函数仍然有错误。
class Foo {
public:
Foo ( int x, int y, int type );
}
在 .cpp 文件中
Foo::Foo ( int x = 0, int y = 0, int type = 0 ) {
然而,当我称之为
Foo foo_array[5][5];
我得到了错误。这可能是什么原因?
即使使用默认构造函数仍然有错误。
class Foo {
public:
Foo ( int x, int y, int type );
}
在 .cpp 文件中
Foo::Foo ( int x = 0, int y = 0, int type = 0 ) {
然而,当我称之为
Foo foo_array[5][5];
我得到了错误。这可能是什么原因?