码迷,mamicode.com
首页 > 编程语言 > 详细

Java单例模式

时间:2017-05-31 14:19:25      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:singleton   highlight   ==   模式   单例模式   blog   ret   get   class   

package singleton;
/**
 * 单例模式
 * @author pengYi
 *
 */
public class Singleton {

	private static Singleton instance = null;
	
	private Singleton(){}
	
	public static Singleton getSingletonInstance(){
		if (instance == null) {
			instance =  new Singleton();
			return instance;
		} else {
			return instance;
		}	
	}
}

  

Java单例模式

标签:singleton   highlight   ==   模式   单例模式   blog   ret   get   class   

原文地址:http://www.cnblogs.com/py1994/p/6923303.html

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