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

设计模式之单例模式

时间:2017-03-08 13:49:01      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:null   设计   nal   let   ati   turn   eager   instance   ret   

/**
 * 贪婪模式(EAGER)
 */
public class Singleton {

    private static final Singleton INSTANCE = new Singleton();

    private Singleton() {
        // DO NOTHING
    }

    public static final Singleton getInstance() {
        return INSTANCE;
    }

}
///////////////////////////////////////////////////////////////
/**
 * 懒汉模式(LAZY)
 */
public class Singleton {

    private volatile static Singleton INSTANCE = null;

    private Singleton() {
        // DO NOTHING
    }

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

        return INSTANCE;
    }

}
///////////////////////////////////////////////////////////
/**
 * 嵌套类
 */
public class Singleton {

    private Singleton() {
        // DO NOTHING
    }

    public static final Singleton getInstance() {
        return SingletonHelper.INSTANCE;
    }

    private static final class SingletonHelper {
        private static final Singleton INSTANCE = new Singleton();
    }

}
/////////////////////////////////////////////////////////////
/**
 * 枚举
 */

 

设计模式之单例模式

标签:null   设计   nal   let   ati   turn   eager   instance   ret   

原文地址:http://www.cnblogs.com/yang-taiyue/p/6518459.html

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