单例模式

单例模式

什么是单例模式

一个类只能产生一个实例对象

应用场景

windows任务管理器

如何编写

  1. 构造器私有
  2. 对外提供拿到对象的方法
  3. 声明一个static的成员变量,类加载的时候创建当前单例对象
  4. 在获取对象的方法中返回成员变量的值

饿汉式:

优点缺点
天然线程安全不能做到延迟加载
class Single{
	private static Single single = new Single();
	//1.私有化构造器
	private Single() {	
	}
	//2.公开的拿到Single对象方法
	public static Single getInstance() {
		return single;
	}
}
public static void main(String[] args) {
	Single s = Single.getInstance();//通过类名.方法拿到single对象。
	}

懒汉式:

优点缺点
能够做到延迟加载线程不安全
public class Lazy {
	private static Lazy lazy = null;
	private Lazy() {	
	}
	public static Lazy getInstance() {
		if(lazy == null) {
			lazy = new Lazy();
		}
		return lazy;
	}

加锁版

class Lazy {
	private static Lazy lazy = null;
	private Lazy() {
	}
	public static Lazy getInstance() {
		if (lazy == null) {
			synchronized (Lazy.class) {
				if (lazy == null) {
					try {
						Thread.sleep(20);
					} catch (InterruptedException e) {
						e.printStackTrace();
					}
					lazy = new Lazy();
				}
			}	
		}
		return lazy;
	}
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值