码迷,mamicode.com
首页 > 编程语言 > 详细

static静态块 构造方法 普通语句块 在java中的执行顺序

时间:2019-02-26 16:50:45      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:静态块   执行顺序   ali   struct   sys   col   out   tor   lan   

 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

static静态块 构造方法 普通语句块 在java中的执行顺序

标签:静态块   执行顺序   ali   struct   sys   col   out   tor   lan   

原文地址:https://www.cnblogs.com/wylwyl/p/10438023.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!