美文网首页
单例设计模式

单例设计模式

作者: 田_19ab | 来源:发表于2019-02-19 17:14 被阅读0次

一、概述
1、概念
单例模式是一种对象创建模式,它用于产生一个对象的具体实例,它可以确保系统中一个类只产生一个实例。
2、好处
对于频繁使用的对象,可以省略创建对象所花费的时间,这对于那些重量级对象而言,是非常可观的一笔系统开销。
由于new操作的次数减少,因而对系统内存的使用频率也会降低,这将减轻GC压力,缩短GC停顿时间。
二、单例的六种写法和各自特点
饿汉、懒汉、懒汉线程安全、DCL、静态内部类、枚举

1、饿汉

public class HungurySingleton {
    private static final HungurySingleton mInstance = new HungurySingleton();
    
    private HungurySingleton(){
    }
    
    public static HungurySingleton getInstance(){
        return mInstance ;
    }
}

不足之处:无法对instance实例做延时加载。

2、懒汉

public class LazySingleton {
    
    private static LazySingleton mInstance;
    
    private LazySingleton(){
    }
    
    public static LazySingleton getInstance(){
        if(mInstance == null){
            mInstance = new LazySingleton();
        }
        return mInstance;
    }
}

不足之处:在多线程并发下这样的实现是无法保证实例是唯一的。

3、懒汉线程安全

public class LazySafetySingleton {

    private static LazySafetySingleton mInstance;

    private LazySafetySingleton(){
    }

    public static synchronized LazySafetySingleton getInstance(){
        if(mInstance == null){
            mInstance = new LazySafetySingleton();
        }
        return mInstance;
    }
    
    public static LazySafetySingleton getInstance(){
        synchronized (LazySafetySingleton.class){
            if(mInstance == null){
                mInstance = new LazySafetySingleton();
            }
        }
        return mInstance;
    }
}

不足之处:性能。使用synchronized导致性能缺陷。

4、DCL(双重检查锁机制)

public class DclSingleton {

    private static volatile DclSingleton mInstance;

    private DclSingleton(){
    }

    public static DclSingleton getInstance(){
        //避免不必要的同步
        if(mInstance == null){
            synchronized (DclSingleton.class){
                if(mInstance == null){
                    mInstance = new DclSingleton();
                }
            }
        }
        return mInstance;
    }
}

不足之处:JVM的即时编译器中存在指令重排序的优化。

5、静态内部类

public class StaticInnerSingleton {

    private StaticInnerSingleton(){
    }

    //静态内部类
    private static class SingletonHolder{
        private static final StaticInnerSingleton sInstance = new StaticInnerSingleton();
    }

    public static StaticInnerSingleton getInstance(){
        return SingletonHolder.sInstance;
    }

}

优点:JVM本身机制保证了线程安全/没有性能缺陷。
原因:static、final

6、枚举

public enum EnumSingleton {

    INSTANCE;

    public void doSomething(){

    }
}

优点:写法简单、线程安全

三、android中的单例
1、application

public class AppContext extends Application {
    private static AppContext mInstance;
    
    public static AppContext getInstance(){
        return mInstance;
    }

    @Override
    public void onCreate() {
        super.onCreate();
        mInstance = this;
    }
}

2、单例模式引起的内存泄漏
3、eventbus的问题

相关文章

  • 单例模式Java篇

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

  • python中OOP的单例

    目录 单例设计模式 __new__ 方法 Python 中的单例 01. 单例设计模式 设计模式设计模式 是 前人...

  • 单例

    目标 单例设计模式 __new__ 方法 Python 中的单例 01. 单例设计模式 设计模式设计模式 是 前人...

  • python 单例

    仅用学习参考 目标 单例设计模式 __new__ 方法 Python 中的单例 01. 单例设计模式 设计模式设计...

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

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

  • 设计模式第二篇、单例设计模式

    目录1、什么是单例设计模式2、单例设计模式的简单实现3、单例设计模式面临的两个问题及其完整实现4、单例设计模式的应...

  • 设计模式 - 单例模式

    设计模式 - 单例模式 什么是单例模式 单例模式属于创建型模式,是设计模式中比较简单的模式。在单例模式中,单一的类...

  • 2、创建型设计模式-单例设计模式

    江湖传言里的设计模式-单例设计模式 简介:什么是单例设计模式和应用 备注:面试重点考查 单例设计模式:这个是最简单...

  • 设计模式之单例模式

    单例设计模式全解析 在学习设计模式时,单例设计模式应该是学习的第一个设计模式,单例设计模式也是“公认”最简单的设计...

  • 设计模式

    常用的设计模式有,单例设计模式、观察者设计模式、工厂设计模式、装饰设计模式、代理设计模式,模板设计模式等等。 单例...

网友评论

      本文标题:单例设计模式

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