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

java单例模式等一些程序的写法....持续更新...

时间:2017-06-21 00:53:12      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:syn   cto   ret   turn   tor   style   懒汉   stat   饿汉   

一、单例模式的写法:

public class MyFactory {
    /**
     * 饿汉式
     */
    private static MyFactory instance = new MyFactory();
    
    private MyFactory(){
        
    }
    
    public static MyFactory getInstance(){
        return instance;
    }
}
public class MyFactory {
    
    /**
     * 懒汉式(要注意处理线程安全问题)
     */
    private static MyFactory instance;
    
    public static MyFactory getInstance(){
        if(instance == null){
            synchronized(MyFactory.class){
                if(instance == null){
                    instance = new MyFactory();
                }
            }
        }
        
        return instance;
    }
}

 

 

 

 

 

 

 

 

 

 

--------------

java单例模式等一些程序的写法....持续更新...

标签:syn   cto   ret   turn   tor   style   懒汉   stat   饿汉   

原文地址:http://www.cnblogs.com/tenWood/p/7056976.html

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