次のように、別のクラスで新しい「ワールド」オブジェクトを宣言しました。
fray.World world = new fray.World();
Javaコンパイラは、コンストラクタが見つからないと不平を言っています(fray
パッケージ内のクラスの位置は問題ありません)。
fray.World クラスに次のコンストラクターがあります。
World() {
this(100, 100, 100);
}
World(int width) {
this(width, 100, 100);
}
World(int width, int length) {
this(width, length, 100);
}
World(int width, int length, int height) {
this.x = new int[width];
this.y = new int[length];
this.z = new int[height];
this.entities = new Entity[0];
}
どうしたの?