码迷,mamicode.com
首页 > 编程语言 > 详细

Java设计模式之单例

时间:2017-07-21 19:48:42      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:sync   turn   logs   http   static   image   style   java   zed   

/**
 * 单例!!!!!!!!!!!!!!!!!!!
 */
public class SingletonTest {
    private static SingletonTest instance = null;
    private SingletonTest(){

    }
    private  static  synchronized  void syncInit(){
        if(instance == null){
            instance = new SingletonTest();
            System.out.println("实例创建成功");
        }
    }
    public static SingletonTest getInstance(){
        if(instance == null){
            syncInit();
        }
        return instance;
    }

}
public class Test {
    public static void main(String[] args){
         SingletonTest singleton =  SingletonTest.getInstance();
         SingletonTest singleton1 = SingletonTest.getInstance();
    }
}

运行结果:

技术分享

即只会创建一次实例!!!!!

 

Java设计模式之单例

标签:sync   turn   logs   http   static   image   style   java   zed   

原文地址:http://www.cnblogs.com/alexanderthegreat/p/7219220.html

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