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;
        }
    }
  • 相关阅读:
    MongoDB 基础
    类加载流程,类加载机制及自定义类加载器详解
    Object中有哪些方法及其作用
    Intellij IDEA 导入Maven项目
    用IDEA开发Spring程序
    深入浅出 Java 8 Lambda 表达式
    UUID.randomUUID()简单介绍
    json字符串转成 json对象 json对象转换成java对象
    字符串转 Boolean 的正确方式
    获取JSON中所有的KEY
  • 原文地址:https://www.cnblogs.com/xianzhedeyu/p/5548725.html
Copyright © 2011-2022 走看看