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

单例模式

时间:2019-05-13 12:40:19      阅读:87      评论:0      收藏:0      [点我收藏+]

标签:span   turn   style   static   ati   zed   单例   font   懒汉   

/**
* 单例模式:懒汉式
*/
class Singleton{
private static volatile Singleton singleton = null;
private Singleton(){

}
public static Singleton getInstance(){
if(singleton == null){
synchronized (Singleton.class){
if (singleton == null){
singleton = new Singleton();
}
}
}
return singleton;
}

单例模式

标签:span   turn   style   static   ati   zed   单例   font   懒汉   

原文地址:https://www.cnblogs.com/cn-chy-com/p/10855903.html

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