2016-10-26 30 views
-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") 
     }; 
} 
+3

'Dog'クラスのソースコードも提供してください。 –

+2

この例外は、これまでに投稿したコードでは説明されていません。ほとんどの場合、あなたのコンストラクタまたはcompareTo()コールは再帰を行います(これはしないでください)。 – GhostCat

答えて

1

、変数を初期化するコードを効果的にあなたのコンストラクタ(複数可)の前に付加されます。例えば

:ので、あなたが無条件Dogコンストラクタ内Dogコンストラクタを呼び出している

public Dog[] dogList; 

public Dog(int weight, int age, String foodType) { 
    this.dogList = { new Dog(1, 2, "Bacon"), ... }; 

    this.weight = weight; 
    this.age = age; 
    this.foodType = foodType; 
} 

public Dog[] dogList = { new Dog(1, 2, "Bacon"), ... }; 

public Dog(int weight, int age, String foodType) { 
    this.weight = weight; 
    this.age = age; 
    this.foodType = foodType; 
} 

は同等です。

DogクラスからdogListを削除するか、staticにしてください。

関連する問題