-6
public Dog[] dogList =
{
new Dog(1, 2, "Bacon"),
new Dog(3, 4, "Cheese"),
new Dog(8, 6, "Steak"),
new Dog(5, 6, "Lamb"),
new Dog(12, 14, "Caviar")
};
私は私のプログラムを実行するたびにStackOverflowErrorを持っています。このスタックオーバーフローエラーを修正するにはどうすればよいですか?
System.out.println(new Dog(2, 3, "hi").compareTo(new Dog(1, 2, "a")));
私はそのコードで実行します。 犬クラスのソースコード:あなたは、変数初期化子があるとき
package Luka;
import java.util.Arrays;
public class Dog extends Animal implements Comparable<Dog>{
public void eat(String food)
{
System.out.println("The dog enjoyed his meal of " + food);
}
public int compareTo(Dog other)
{
if(this.age < other.age)
{
int returnNum = -1;
return returnNum;
}
else if(this.age > other.age)
{
int returnNum = 1;
return returnNum;
}
else
{
int returnNum = 0;
return returnNum;
}
}
public String toString(int weight,int age,String foodType)
{
return "The dog weighs "+weight+", is "+age+" years old, and eats "+foodType+" for dinner.";
}
public Dog(int weight, int age, String foodType)
{
this.weight = weight;
this.age = age;
this.foodType = foodType;
}
public Dog[] dogList =
{
new Dog(1, 2, "Bacon"),
new Dog(3, 4, "Cheese"),
new Dog(8, 6, "Steak"),
new Dog(5, 6, "Lamb"),
new Dog(12, 14, "Caviar")
};
}
'Dog'クラスのソースコードも提供してください。 –
この例外は、これまでに投稿したコードでは説明されていません。ほとんどの場合、あなたのコンストラクタまたはcompareTo()コールは再帰を行います(これはしないでください)。 – GhostCat