Android知识点整理2:单例模式

首先单例模式是希望只产生一个对象,主要用做工具类,所以使用私有化构造方法

原理:用private关键字声明的构造器,其访问权限是private,于是它只能被包含它的类自身所访问,而无法在类的外部调用,故而可以阻止对象的生成。所以,如果一个类只有一个私有构造器,而没有任何公有构造器,是无法生成任何对象的。

权限可以看: https://blog.csdn.net/wuqiqi1992/article/details/107868770

单例模式五种写法:

(1)饿汉式:

package com.androidtv.pos.single;

/**
 * @author wuqiqi
 * date on 2020/8/7
 * describe 饿汉式
 */
public class HSingleton {
    private HSingleton(){}
    private static HSingleton instance = new HSingleton();
    public static HSingleton getInstance(){
        return instance;
    }
}

顾名思义,就是提前生成,静态成员变量会在类加载过程中初始化,好处是没有线程安全的问题,坏处是提前加载会影响性能,有可能不使用会浪费内存空间。

(2)懒汉式:

线程不安全:

package com.androidtv.pos.single;

/**
 * @author wuqiqi
 * date on 2020/8/7
 * describe 懒汉式(线程不安全)
 */
public class LSingleton {
    private LSingleton(){}
    private static LSingleton instance;
    public static LSingleton getInstance(){
        if(instance == null){
            instance = new LSingleton();
        }
        return instance;
    }
}

顾名思义,就是延迟生成,在调用的时候生成,好处是调用时候生成,不会浪费内存空间,性能高,坏处有线程安全问题。

线程安全:

就是加了 synchronized 修饰符

package com.androidtv.pos.single;

/**
 * @author wuqiqi
 * date on 2020/8/7
 * describe 懒汉式(线程安全)
 */
public class LSSingleton {
    private LSSingleton(){};
    private static LSSingleton instance;
    public static synchronized LSSingleton getInstance(){
        if(instance == null){
            instance = new LSSingleton();
        }
        return instance;
    }
}

好处是调用时候生成,不会浪费内存空间,线程安全,坏处是性能低,每次调用都要进行synchronized判断。

由这个改善为 双重检测方式:

(3)双重检测:

package com.androidtv.pos.single;

/**
 * @author wuqiqi
 * date on 2020/8/7
 * describe 双重检测
 */
public class DoubleSingleton {
    private DoubleSingleton(){}
    private volatile static DoubleSingleton doubleSingleton;
    public static DoubleSingleton getInstance(){
        if(doubleSingleton == null){
            synchronized (DoubleSingleton.class){
                if(doubleSingleton == null){
                    doubleSingleton = new DoubleSingleton();
                }
            }
        }
        return doubleSingleton;
    }
}

这样既保证了线程安全,又比直接上锁提高了执行效率,还节省了内存空间,但这不是完全线程安全。(推荐使用)

(4)静态内部类:

package com.androidtv.pos.single;

/**
 * @author wuqiqi
 * date on 2020/8/7
 * describe 静态内部类
 */
public class StaticSingleton {
    private StaticSingleton(){}
    private static class StaticSingletonHolder{
        private static final  StaticSingleton instance = new StaticSingleton();
    } 
    public static final StaticSingleton getInstance(){
        return StaticSingletonHolder.instance;
    }
}

也有饿汉式线程安全优点,又因为内部静态类初始化是在外部类静态方法调用的时候才初始化,所以初始化时机也是使用的时候,也节省了内存空间,避免不必要浪费。(推荐使用)

(5)枚举形式:

package com.androidtv.pos.single;

/**
 * @author wuqiqi
 * date on 2020/8/7
 * describe 枚举类型
 */
public enum  ESingleton {
    INSTANCE;
}

线程安全,但耗费资源多,java是不推荐使用枚举

 

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值