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

单例模式

时间:2019-10-04 18:43:51      阅读:106      评论:0      收藏:0      [点我收藏+]

标签:单例模式   单例   system   构造方法   zed   sync   机制   read   ret   

public class Singleton {
//单例设计模式,禁止指令重排可以加volatile
private static Singleton singleton = null;

private void Singleton() {
System.out.println(Thread.currentThread().getName() + "构造方法执行");
}
//DCL(Double Check lock双端检索机制)
public static Singleton getInstance() {
if (singleton == null) {
synchronized (Singleton.class) {
if (singleton == null) {
singleton=new Singleton();
}
}
}
return singleton;
}
}

单例模式

标签:单例模式   单例   system   构造方法   zed   sync   机制   read   ret   

原文地址:https://www.cnblogs.com/shanbaoxin/p/11622609.html

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