Java 子类 和 父类 执行顺序

2021/4/12 14:26:24

本文主要是介绍Java 子类 和 父类 执行顺序,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

public class Parent {
    static {
        System.out.println("parent static");
    }
    {
        System.out.println("parent code block");
    }

    public Parent(String name){
        System.out.println("parent init");
    }
}
public class Child extends Parent {
    static {
        System.out.println("child static");
    }
    {
        System.out.println("child code block");
    }

    public Child(){
        System.out.println("child init");
    }
    public void echo(){
        System.out.println("this is child");
    }

    public static void main(String[] args) {
        new Child().echo();

        System.out.println("===============");
        new Child().echo();
    }
}

执行结果:

parent static
child static
parent code block
parent init
child code block
child init
this is child
===============
parent code block
parent init
child code block
child init
this is child

 

如果 父类和子类 构造方法没有对应,则直接编译错误,直接报错



这篇关于Java 子类 和 父类 执行顺序的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程