类加载顺序(没写完)

类加载顺序

下面两段代码,我还没弄明白,有时间把解释加上去

第一段

package p1.Demo;

public class Demo17 {
    public static void main(String[] args) {

        Son son = new Son();
        System.out.println("----end----");

    }
}

class Son extends Father {
    private int a = 1;
    private long b = 2L;
    static int c = 3;

    {
        System.out.println("1 Son 动态 block");
    }

    static {
        System.out.println("2 Son static block");
    }

    Son() {
        b = 3L;
        System.out.println("3 Son constructor");
    }
}

class Father {
    int d;
    static int e = 4;

    static Son son = new Son();

    {
        System.out.println("4 father 动态 block");
    }

    static {
        System.out.println("5 father static block");
    }

    Father(){
        d = 1;
        System.out.println("6 father constructor");
    }
}


执行结果

4 father 动态 block
6 father constructor
1 Son 动态 block
3 Son constructor
5 father static block
2 Son static block
4 father 动态 block
6 father constructor
1 Son 动态 block
3 Son constructor
----end----

第二段

package p1.Demo;

public class Demo17 {
    public static void main(String[] args) {

        Son son = new Son();
        System.out.println("----end----");

    }
}

class Son extends Father {

    {
        System.out.println("1 Son 动态 block");
    }

    static {
        System.out.println("2 Son static block");
    }

    Son() {
        System.out.println("3 Son constructor");
    }
}

class Father {

    {
        System.out.println("4 father 动态 block");
    }

    static {
        System.out.println("5 father static block");
    }

    Father(){
        System.out.println("6 father constructor");
    }
}


执行结果

5 father static block
2 Son static block
4 father 动态 block
6 father constructor
1 Son 动态 block
3 Son constructor
----end----

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值