Javaのコンストラクタはスーパクラスから順に実行される
(親クラス←子クラス)
Animal ← Cat ← Mike
という継承ツリーでMikeをインスタンス化すると、
Animal,Cat,Mikeの順にコンストラクタが実行されることがわかる。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
import java.util.*; public class Main { public static void main(String[] args) throws Exception { Animal a = new Mike(7); a.cry(); } } abstract class Animal { protected int age; public Animal(int age) { this.age = age; System.out.println("end Animal"); } abstract public void cry(); } class Dog extends Animal { public Dog(int age){ super(age); System.out.println("end Dog"); } @Override public void cry(){ System.out.println("ワン(" + this.age + ")"); } } class Cat extends Animal { public Cat(int age){ super(age); System.out.println("end Cat"); } @Override public void cry(){ System.out.println("ニャー(" + this.age + ")"); } } class Mike extends Cat { public Mike(int age){ super(age); System.out.println("end Mike"); } @Override public void cry(){ System.out.println("ミケニャー(" + this.age + ")"); } } |
1 2 3 4 |
end Animal end Cat end Mike ミケニャー(7) |