美文网首页
单例模式

单例模式

作者: wxz1997 | 来源:发表于2018-06-11 18:46 被阅读0次

一、定义

确保某一个类只有一个实例,而且自行实例化并向整个系统提供这个实例。

二、实现

  1. 懒汉模式
package cn.wxz1997.concurrency.singleton;

/**
 * @Description: 懒汉模式(双重检测)
 * @Author: wxz1997
 * @Date 18-6-11下午6:02
 */
public class Singleton {

    /**
     * 若不加volatile修饰,由于jvm和cpu指令重排,无法保障可见性
     */
    private static volatile Singleton singleton = null;

    private Singleton(){

    }

    /**
     * 双重检测机制减小了同步的开销
     * @return
     */
    public static Singleton getInstance(){
        if (null == singleton){
            synchronized (Singleton.class){
                if (null == singleton){
                    singleton = new Singleton();
                }
            }
        }


        return singleton;
    }
}

  1. 饿汉模式
package cn.wxz1997.concurrency.singleton;

/**
 * @Description: 饿汉模式,在类装载时进行创建
 * @Author: wxz1997
 * @Date 18-6-11下午6:02
 */
public class Singleton {
    
    private static Singleton singleton = new Singleton();

    private Singleton(){
    }

    public static Singleton getInstance(){
        return singleton;
    }
}

  1. 枚举模式(推荐)
package cn.wxz1997.concurrency.singleton;

/**
 * @Description: 枚举模式
 * @Author: wxz1997
 * @Date 18-6-11下午6:02
 */
public class Singleton {
    

    private Singleton(){

    }

    public static Singleton getInstance(){
        return SingletonEnum.INSTANCE.getInstance();
    }

    private enum SingletonEnum {
        INSTANCE;
        private Singleton singleton;
        
        //jvm保证这个方法绝对只调用一次
        SingletonEnum(){
            singleton = new Singleton();
        }

        public Singleton getInstance() {
            return singleton;
        }
    }
}

  1. 静态内部类实现
package cn.wxz1997.concurrency.singleton;

/**
 * @Description: 静态内部类
 * @Author: wxz1997
 * @Date 18-6-11下午6:02
 */
public class Singleton {  
    private static class SingletonHolder {  
        private static final Singleton INSTANCE = new Singleton();  
    }  
    private Singleton (){
    }  
    public static final Singleton getInstance() {  
        return SingletonHolder.INSTANCE;  
    }  
}   

相关文章

  • 【设计模式】单例模式

    单例模式 常用单例模式: 懒汉单例模式: 静态内部类单例模式: Android Application 中使用单例模式:

  • Android设计模式总结

    单例模式:饿汉单例模式://饿汉单例模式 懒汉单例模式: Double CheckLock(DCL)实现单例 Bu...

  • 2018-04-08php实战设计模式

    一、单例模式 单例模式是最经典的设计模式之一,到底什么是单例?单例模式适用场景是什么?单例模式如何设计?php中单...

  • 设计模式之单例模式详解

    设计模式之单例模式详解 单例模式写法大全,也许有你不知道的写法 导航 引言 什么是单例? 单例模式作用 单例模式的...

  • Telegram开源项目之单例模式

    NotificationCenter的单例模式 NotificationCenter的单例模式分析 这种单例模式是...

  • 单例模式Java篇

    单例设计模式- 饿汉式 单例设计模式 - 懒汉式 单例设计模式 - 懒汉式 - 多线程并发 单例设计模式 - 懒汉...

  • IOS单例模式的底层原理

    单例介绍 本文源码下载地址 1.什么是单例 说到单例首先要提到单例模式,因为单例模式是单例存在的目的 单例模式是一...

  • 单例

    iOS单例模式iOS之单例模式初探iOS单例详解

  • 单例模式

    单例模式1 单例模式2

  • java的单例模式

    饿汉单例模式 懒汉单例模式

网友评论

      本文标题:单例模式

      本文链接:https://www.haomeiwen.com/subject/eggheftx.html