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 子类 和 父类 执行顺序的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2025-01-07转型传统行业避坑指南!
- 2025-01-07百万架构师第九课:源码分析:Spring 源码分析:Spring5源码分析-预习资料|JavaGuide
- 2025-01-07为你的程序精选的4个优质支付API
- 2025-01-06责任分配矩阵在项目管理中的作用:结合工具提升团队生产力
- 2025-01-06板栗看板:优化项目管理的实用策略,助你轻松完成任务
- 2025-01-06电商小白怎么选取合适的工具?一站式工具指南来啦
- 2025-01-06企业如何避免春节期间的项目断层?四大方法教给你!
- 2025-01-06初创团队如何在动态环境下利用看板工具快速迭代
- 2025-01-06企业内部管理如何实现高效?四大策略教会你
- 2025-01-06给 Postgres 写一个向量插件 - 向量类型