设计模式之单例模式

本文详细介绍了Java中的单例模式,包括其特点、意图和应用场景。讨论了四种实现方式:懒汉式(线程不安全、线程安全)、饿汉式和双锁校验,以及静态内部类实现,分析了各自的优缺点和线程安全性。着重探讨了在多线程环境下的单例模式实现策略,以确保高效和线程安全。
摘要由CSDN通过智能技术生成

设计模式之单例模式(笔记)

单例模式特点

  • 单例类只能有一个实例
  • 单例类必须自己创建自己的唯一实例
  • 单例类必须给其他所有对象提供这一个实例

意图

保证一个类仅有一个实例,并提供一个访问它的全局访问方法

主要解决

一个全局使用的类频繁创建和销毁

何时使用

当你想要控制实例对象数目,节约系统资源的时候

懒汉式:线程不安全的

懒加载,线程不安全

public class Singleton {
	private static Singleton instance;
	private Singleton() {}
	
	public static Singleton getInstance() {
		if(instance==null) {
			instance=new Singleton();
		}
		return instance;
	}
}

懒汉式:线程安全的

懒加载,线程安全,多线程情况下影响性能

public class Singleton {
	private static Singleton instance;
	private Singleton() {}
	
	public static synchronized Singleton getInstance() {
		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;
	}
    
}

双锁校验

懒加载,线程安全,多线程情况下依然保持高性能,需要volatile保持可见性

public class Singleton {
	private volatile static Singleton instance;
	private Singleton() {}
	
	public static  Singleton getInstance() {
		if(instance==null) {
			synchronized(Singleton.class) {
				if(instance==null) {
					instance=new Singleton();
				}
			}
			
		}
		return instance;
	}
}

静态内部类

懒加载,线程安全,适用于静态域

public class Singleton {
	private static Singleton instance;
	private static class SingletonHolder{
		private static final Singleton INSTANCE=new Singleton();
	}
	private Singleton() {}
	
	public static  Singleton getInstance() {
		return SingletonHolder.INSTANCE;
	}
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值