码迷,mamicode.com
首页 > 其他好文 > 详细

类加载 静态加载

时间:2020-04-30 11:46:25      阅读:48      评论:0      收藏:0      [点我收藏+]

标签:ring   span   out   ons   print   main   todo   cte   style   

 

public class StaticTest {
     
    static int j=2;
    static{
         j=3;
         System.out.println(j);
    }
    public StaticTest() {
        // TODO Auto-generated constructor stub
        j=9;
        System.out.println(j);
    }
    public static void main(String[] args) {
        System.out.println("hello");
        new StaticTest();
    }
}

3
hello
9

 

 

类加载 静态加载

标签:ring   span   out   ons   print   main   todo   cte   style   

原文地址:https://www.cnblogs.com/kakaisgood/p/12807420.html

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