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 子类 和 父类 执行顺序的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-25JAVA语音识别项目项目实战入门教程
- 2024-11-25JAVA云原生项目实战入门教程
- 2024-11-25Java语音识别项目入门:新手必读指南
- 2024-11-25Java语音识别项目入门:轻松开始你的第一个语音识别项目
- 2024-11-25Java语音识别项目入门详解
- 2024-11-25Java语音识别项目教程:从零开始的详细指南
- 2024-11-25JAVA语音识别项目教程:初学者指南
- 2024-11-25Java语音识别项目教程:初学者指南
- 2024-11-25JAVA云原生入门:新手指南与基础教程
- 2024-11-25Java云原生入门:从零开始的全面指南