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

Java中static块,构造块,构造函数的执行顺序

时间:2018-11-09 00:44:47      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:结果   fun   style   stat   执行顺序   执行   xtend   func   pre   

public class Father {
    static {
        System.out.println("Father静态块");
    }

    {
        System.out.println("Father构造块");
    }

    public Father() {
        System.out.println("Father构造器");
    }

    void func1() {
        System.out.println("Father方法 1");
    }

    public static void main(String[] args) {
        Father father = new Son();
        father.func1();
    }

}

class Son extends Father {
    static{
        System.out.println("Son静态块");
    }

    {
        System.out.println("Son构造块");
    }

    public Son() {
        System.out.println("Son构造器");
    }

    @Override
    void func1() {
        System.out.println("Son方法 1");
    }

    void func2() {
        System.out.println("Son方法 2");
    }

}

结果:

Father静态块
Son静态块
Father构造块
Father构造器
Son构造块
Son构造器
Son方法 1

 

Java中static块,构造块,构造函数的执行顺序

标签:结果   fun   style   stat   执行顺序   执行   xtend   func   pre   

原文地址:https://www.cnblogs.com/convict/p/9932804.html

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