• 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;
        }
    }
  • 相关阅读:
    2016.10.15先占坑
    2016.10.11先占坑
    2016.10.13先占坑
    2016.10.7先占坑
    main()里面为什么要放String[] args
    对于一个给定的正整数 n ,请你找出一共有多少种方式使 n 表示为若干个连续正整数的和,要求至少包括两个正整数。
    求两个数的最大公约数的三种算法总结
    C++
    Dev-c5.11的使用
    客户端和服务器端的交互(未完待续)
  • 原文地址:https://www.cnblogs.com/xianzhedeyu/p/5548725.html
Copyright © 2020-2023  润新知