下面图老师小编跟大家分享论全世界所有程序员都会犯的错误,一起来学习下过程究竟如何进行吧!喜欢就赶紧收藏起来哦~
【 tulaoshi.com - 编程语言 】
当年,某国际巨星的“龙种”曝光,众人指责他对不起娇妻,逼得他出面召开记者会,向世人自白他犯了“全世界所有男人都会犯的错误”。从来没犯过这种错误的我,也因此经常认为自己不是个男人。
虽然没犯过“全世界所有男人都会犯的错误”,但是我倒是曾经犯了“全世界所有程序员都会犯的错误”。不管使用何种语言,全世界所有程序员都一定犯过这种错误,那就是:太依靠编译器,却不知道编译器做了哪些事。class Singleton
{
private static Singleton
obj = new Singleton();
public static int counter1;
public static int counter2 = 0;
private Singleton() {
counter1++;
counter2++;
}
public static Singleton getInstance()
{
return obj;
}
}
public class MyMain {
public static void main(String[] args) {
Singleton obj = Singleton.getInstance();
System.out.println("obj.counter1=="+obj.counter1);
System.out.println("obj.counter2=="+obj.counter2);
}
}
class Singleton
{
private static Singleton obj;
public static int counter1;
public static int counter2;
static
{
// 这就是class constrUCtor
// 在进入此class constructor之前,class已经被JVM
// 配置好内存,所有的static field都会被先设定为0,
// 所以此时counter1和counter2都已经是0,
且singleton为null
obj = new Singleton();
// 问题皆由此行程序产生
// counter1不会在此被设定为0
counter2 = 0;
// counter2再被设定一次0(其实是多此一举)
}
private Singleton()
{
// 这是instance constructor
counter1++;
counter2++;
}
public static Singleton getInstance()
{
return obj;
}
}
来源:http://www.tulaoshi.com/n/20160219/1619849.html
看过《论全世界所有程序员都会犯的错误》的人还看了以下文章 更多>>