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

单例模式

时间:2017-07-24 23:32:00      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:single   syn   线程安全   test   检验   安全   线程   ==   singleton   

1、饿汉式,线程安全,效率低

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

2、饱汉式,非线程安全

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

3、静态内部类

public class SingletonTest {
    private static class Holder {
        private static final SingletonTest instance = new SingletonTest();
    }
    public static final SingletonTest getInstance() {
        return Holder.instance;
    }
}

 

4、双重检验

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

 

单例模式

标签:single   syn   线程安全   test   检验   安全   线程   ==   singleton   

原文地址:http://www.cnblogs.com/m2492565210/p/7231643.html

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