首页 > 其他 > 详细

单例设计模式

时间:2018-08-31 23:04:33      阅读:175      评论:0      收藏:0      [点我收藏+]

单例设计模式:一个类只能创建一个对象。

实现思路:

1、私有化构造器,使得类的外部不能调用此构造器

2、在类的内部创建一个类的实例

3、私有化对象,通过公共的方法来调用

4、此公共的方法,只能通过类来调用,因此是静态的,类的实例也是静态的

/**
 * 饿汉式
 * @author Administrator
 *
 */
class Singleton{
	 private Singleton(){
		 
	 }
	 
	 private static Singleton instance =new Singleton();
	 
	 public static Singleton getInstance(){
		 return instance;
	 }
}

/**
 * 懒汉式 调用时才创建 有线程安全问题
 * @author Administrator
 *
 */
class Singleton1{
	private Singleton1(){
		
	}
	
   private static Singleton1 instance =null;
   
   public static Singleton1 getInstance(){
	   if(instance ==null){
		   instance=new Singleton1();
	   }
	   return instance;
   }
}

  

单例设计模式

原文:https://www.cnblogs.com/learningkeeper/p/9568599.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!