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

单例模式的七种写法

时间:2016-11-02 07:42:06      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:return   let   static   安全   ret   code   private   bsp   线程   

第一种(懒汉,线程不安全):

public class Singleton {
    private static Singleton instance;
    private Singleton (){}

    public static Singleton getInstance() {
    if (instance == null) {
        instance = new Singleton();
    }
    return instance;
    }
}

 

第二种(懒汉,线程安全):

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

 

第三种(饿汉):

public class Singleton {
    private static Singleton instance = new Singleton();
    private Singleton (){}
    public static Singleton getInstance() {
    return instance;
    }
}

 

第四种(饿汉,变种):

    private static Singleton instance = null;
    static {
    instance = new Singleton();
    }
    private Singleton (){}
    public static Singleton getInstance() {
    return instance;
    }
}

 

第五种(静态内部类):

    public class Singleton {
        private static class SingletonHolder {
        private static final Singleton INSTANCE = new Singleton();
        }
        private Singleton (){}
        public static final Singleton getInstance() {
        return SingletonHolder.INSTANCE;
        }
    }

 

第六种(枚举):

public enum Singleton {
    INSTANCE;
    public void whateverMethod() {
    }
}

 

第七种(双重校验锁):

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

 

单例模式的七种写法

标签:return   let   static   安全   ret   code   private   bsp   线程   

原文地址:http://www.cnblogs.com/greatfish/p/6021516.html

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