zoukankan      html  css  js  c++  java
  • Java中的单例模式

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

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

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

    pulic class Singleton {
        private static Singleton instance;
        private Singleton () {}
        public static synchronized Singleton getInstace() {
            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 Singleton instance = null;
        static {
            instance = new Singleton();
        }
        private Singleton () {};
        public static Singleton getInstance() {
            return this.instance;
        }
    }
    

    第五种(静态内部类)

    public class Singleton {
        private static class SingletonHolder {
            private static final Singleton INSTANCE = null;
        }
        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;
        }
    }
  • 相关阅读:
    ugui优化
    jmeter请求时json串的输入格式
    Python文件读写之r+/w+/a+
    python文件操作
    python列表操作
    python嵌套字典的用法
    python字典的基础操作
    python字符串操作
    python基础之字符串为空或空格判断
    【转】Charles手机抓包设置&无法打开火狐网页设置
  • 原文地址:https://www.cnblogs.com/xianzhedeyu/p/5548725.html
Copyright © 2011-2022 走看看