码迷,mamicode.com
首页 > 其他好文 > 详细

单利模式

时间:2018-05-05 16:52:55      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:通过   sync   single   zed   单利   情况   instance   饿汉式   get   

单利模式,饿汉式与赖汉式写法,私有构造器保证了类在其他地方不能被实例化只能通过公用方法实例化对象。而懒汉式需要保证对象线程安全,否则会出现有多个对象的情况。

/*
*
// 单利饿汉式
private static Single instance = new Single();

private Single (){}

public static Single getInstance(){
return instance;
}*/

/**
* 单利赖汉式
*/
private static Single instance = null;

private Single (){}

public static synchronized Single getInstance(){
if(null == instance){
instance = new Single();
}
return instance;
}

单利模式

标签:通过   sync   single   zed   单利   情况   instance   饿汉式   get   

原文地址:https://www.cnblogs.com/shuanglin/p/8995011.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!