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;
        }
    }
  • 相关阅读:
    计划任务
    swap
    fdisk
    raid 搭建
    Http协议中Cookie详细介绍
    linux系统日志以及分析
    搞清楚php-FPM到底是什么?
    Amoeba+Mysql实现数据库读写分离
    Last_SQL_Error: Error 'Can't drop database 'ABC'; database doesn't exist' on query. Default database: 'ABC'. Query: 'drop database ABC'
    MySQL主从失败, 错误Got fatal error 1236解决方法
  • 原文地址:https://www.cnblogs.com/xianzhedeyu/p/5548725.html
Copyright © 2011-2022 走看看