デフォルトのコンストラクターでもエラーが発生します。
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];
エラーが発生します。それは何か理由がありますか?