work hard work smart

专注于Java后端开发。 不断总结,举一反三。
随笔 - 1158, 文章 - 0, 评论 - 153, 阅读 - 186万
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
< 2025年1月 >
29 30 31 1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31 1
2 3 4 5 6 7 8

初始化对于类和接口的异同点深入解析

Posted on   work hard work smart  阅读(544)  评论(0编辑  收藏  举报

当Java虚拟机初始化一个类时,要求它的所有父类都已经初始化,但是这条规则不适于接口

1) 当初始化一个类时,并不会先初始化它所实现的类的接口。

2) 在初始化一个接口时,并不会先初始化它的父接口

因此,一个父接口并不会因为它的子接口或者实现类的初始化而初始化。只有当程序首次使用特定接口的镜头变量时,才会导致该接口的初始化。

 

当初始化一个类时,并不会先初始化它所实现的类的接口 Sample

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
public class MyTest5 {
 
    public static void main(String[] args) {
        System.out.println(MyChild5.b);
        
    }
}
 
interface MyParent5{
 
 
    public static Thread thread = new Thread(){
        {
            //实例化代码块
            System.out.println("MyParent 5 invoked ");
        }
    };
 
}
 
class MyChild5 implements MyParent5{
    public static  int b = 6;
 
}

  打印结果

1
6

  

如果接接口改为class

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
public class MyTest5 {
 
    public static void main(String[] args) {
        System.out.println(MyChild5.b);
 
    }
}
 
class MyParent5{
 
   
    public static Thread thread = new Thread(){
        {
            //实例化代码块
            System.out.println("MyParent 5 invoked ");
        }
    };
 
}
 
class MyChild5 extends MyParent5{
    public static  int b = 6;
 
}

  那么就会打印出

MyParent 5 invoked 这句话。

 

 在初始化一个接口时,并不会先初始化它的父接口

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
public class MyTest5 {
 
    public static void main(String[] args) {
   
        System.out.println(MyParent5_1.thread);
    }
}
 
 
 
interface MyGrandpa5_1 {
    public static Thread thread = new Thread(){
        {
            //实例化代码块
            System.out.println("MyGrandpa5_1 invoked ");
        }
    };
}
 
interface MyParent5_1 {
    public static  Thread thread = new Thread(){
        {
            //实例化代码块
            System.out.println("MyParent5_1 invoked ");
        }
    };
}

  打印结果

1
2
MyParent5_1 invoked
Thread[Thread-0,5,main]

  

点击右上角即可分享
微信分享提示