zoukankan      html  css  js  c++  java
  • 【剑指offer】面试题 2. 实现 Singleton 模式

    面试题 2. 实现 Singleton 模式

    题目:设计一个类,我们只能生成该类的一个实例。
    单例模式:确保一个类只有一个实例,并提供了一个全局访问点。

    Java 实现

    1.饿汉模式

    //饿汉模式
    public class Singleton1 {
        //私有化构造方法
        private Singleton1() {
        }
    
        private static final Singleton1 instance = new Singleton1();
    
        public static Singleton1 getInstance1() {
            return instance;
        }
    }
    

    2.饿汉模式、变种

    //饿汉模式、变种
    public class Singleton2 {
        //私有化构造方法
        private Singleton2() {
        }
    
        private static final Singleton2 instance;
    
        static {
            instance = new Singleton2();
        }
    
        public static Singleton2 getInstance2() {
            return instance;
        }
    }
    

    3.懒汉、线程不安全

    //懒汉、线程不安全
    public class Singleton3 {
        //私有化构造方法
        private Singleton3() {
        }
    
        private static volatile Singleton3 instance = null;
    
        public static Singleton3 getInstance3() {
            if (instance == null) {
                instance = new Singleton3();
            }
            return instance;
        }
    }
    

    4.懒汉、线程安全

    //懒汉、线程安全
    public class Singleton4 {
        //私有化构造方法
        private Singleton4() {
        }
    
        private static volatile Singleton4 instance = null;
    
        public static synchronized Singleton4 getInstance4() {
            if (instance == null) {
                instance = new Singleton4();
            }
            return instance;
        }
    }
    

    5.静态内部类

    //静态内部类
    public class Singleton5 {
        //私有化构造方法
        private Singleton5() {
        }
    
        //静态内部类
        private static final class SingletonHandler {
            private static final Singleton5 INSTANCE = new Singleton5();
        }
    
        public static Singleton5 getInstance5() {
            return SingletonHandler.INSTANCE;
        }
    }
    

    6.枚举

    //枚举
    public enum Singleton6 {
        INSTANCE;
    
        public void whateverMethod() {
    
        }
    }
    

    7.双重校验锁

    //双重校验锁
    public class Singleton7 {
        //私有化构造方法
        private Singleton7() {
        }
    
        private static volatile Singleton7 instance = null;
    
        public static Singleton7 getInstance7() {
            if (instance == null) {
                synchronized (Singleton7.class) {
                    if (instance == null) {
                        instance = new Singleton7();
                    }
                }
            }
            return instance;
        }
    }
    
  • 相关阅读:
    Powershell-查询当前文件目录层级结构
    Microsoft Edge浏览器下载文件乱码修复方法(二)
    Windows Server 2016-PS筛选导出用户邮箱属性包含某字段列表
    Visual Studio Code-批量添加或删除注释行
    Java利用gson,将字符串转化为list
    Java8新特性-日期相关类操作
    redis设置密码
    linux执行时间段内日志关键字搜索
    idea中以maven工程的方式运行tomcat源码
    微信小程序
  • 原文地址:https://www.cnblogs.com/hgnulb/p/9026546.html
Copyright © 2011-2022 走看看