1 public class Par { 2 3 public Par() { 4 System.out.println("父类--constructor"); 5 } 6 7 static { 8 System.out.println("父类--statc"); 9 } 10 11 { 12 System.out.println("父类普通代码块"); 13 } 14 } 15 16 public class Sub extends Par { 17 18 public Sub() { 19 super(); 20 System.out.println("子类--constructor"); 21 } 22 23 static { 24 System.out.println("子类--static"); 25 } 26 27 { 28 System.out.println("子类--普通代码"); 29 } 30 31 public static void main(String[] args) { 32 Sub sub = new Sub(); 33 } 34 }
执行顺序:
父类----static
子类---static
父类普通代码块
父类----constructor
子类---普通代码块
子类------constructo
原文地址:https://www.cnblogs.com/wylwyl/p/10438023.html
时间: 2024-09-28 02:04:12