package codeBlock;
public class CodeBlockTester {
public static void main(String[] args) {
//主方法中的局部代码块:限定变量的声明周期,提早释放内存
{
String hello = "主方法中的局部代码块";
System.out.println(hello);
}
Son s1 = new Son();
System.out.println("\n---静态代码块在类加载的时候执行,只执行一次---\n");
Son s2 = new Son();
}
//测试类中的静态代码块:类加载时候执行,只执行一次
static {
System.out.println("测试类中的静态代码块");
}
}
class Father{
//父类构造方法
public Father() {
System.out.println("父类构造方法");
}
//父类的构造代码块:每次调用构造方法都执行,且在构造方法前执行
{
System.out.println("父类的构造代码块");
}
//父类的静态代码块:类加载时候执行,只执行一次
static{
System.out.println("父类的静态代码块");
}
}
class Son extends Father{
//子类构造方法
public Son() {
System.out.println("子类构造方法");
}
//子类的构造代码块
{
System.out.println("子类的构造代码块");
}
//子类的静态代码块
static{
System.out.println("子类的静态代码块");
}
}
运行结果:
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦