re: 类加载问题 jestane 2008-10-28 17:25
执行顺序问题:
1.先执行静态,从上往下,先执行private static Singleton obj = new Singleton();
2.执行第一步的时候,进入构造函数
3.在构造函数中count1和count2都被初始化为默认值0,并都++为1.
4.再执行public static int counter1,只是一个申明,跳过。
5.最后执行public static int counter2=0,赋值counter2为0.
6.最后就是输出的内容了。