码迷,mamicode.com
首页 > 编程语言 > 详细

java 编译时的初始化顺序

时间:2014-12-18 21:56:26      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:ar   sp   java   bs   as   工作   new   nbsp   br   

有的时候,java的初始化会对我的工作照成很大影响,所以简单介绍一下,

首先介绍简单的变量的初始化:在类的内部,变量定义的先后顺序决定了初始化的顺序,即使变量定义散布于方法定义之间,它也会先于构造器和方法初始化。

public class Test{
    public static void main(String[] args){
        Test2 test2 = new Test2();
        test2.f();
    }
}
class Test1{
    public Test1(int i){
        System.out.println("this is Test1"+i);
    }
}
class Test2{

    Test1 test1;
    Test1 test11 = new Test1(1);
    public Test2(){
        System.out.println("this is Test2");
        System.out.println("here is test1 "+test1);
        test1 = new Test1(1111);
        test13 = new Test1(33);
    }
    Test1 test12 = new Test1(2);
    public void f(){
        System.out.println("this is f()");
    }
    Test1 test13 = new Test1(3);
}

输出结果为:

this is Test11
this is Test12
this is Test13
this is Test2
here is test1 null
this is Test11111
this is Test133
this is f()

由此可以看出初始化的顺序为:在类的内部,变量定义的先后顺序决定了初始化的顺序,即使变量定义散布于方法定义之间,它也会先于构造器和方法初始化。

即使在构造器或者定义的时候对变量进行了初始化但是这也没办法阻止系统对它进行的默认的初始化;

如果有静态的变量,那么static的变量会优先进行初始化,然后再对普通变量初始化,static变量只初始化一次,当第一次用到这个类的时候进行初始化

java 编译时的初始化顺序

标签:ar   sp   java   bs   as   工作   new   nbsp   br   

原文地址:http://www.cnblogs.com/monkeydai/p/4171627.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!