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

Java设计模式七种写法

时间:2019-01-03 14:01:33      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:内部类   on()   ola   method   校验   线程   volatile   oid   gets   


懒汉模式-线程不安全


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;
    }
}


饿汉模式-变种


public class Singleton {
    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 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;
    }
}


枚举


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

Java设计模式七种写法

标签:内部类   on()   ola   method   校验   线程   volatile   oid   gets   

原文地址:https://www.cnblogs.com/datiangou/p/10213622.html

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