首页 > 其他 > 详细

单例模式

时间:2014-05-22 04:09:57      阅读:421      评论:0      收藏:0      [点我收藏+]

//单例模式的三个条件
//1.构造器私有的
//2.在自己内部定义自己一个实例,注意是private的,只供内部调用
//3.对外提供一个static方法,获取当前类的对象

public class Singleton {
  //懒汉模式,线程不安全
  private Singleton(){}
  private static Singleton instance;
  public static Singleton getInstance(){
    if(instance == null){
      instance = new Singleton();
    }
    return instance;
  }
}

//懒汉模式,线程安全,但多线程时效率很低
class Singleton2{
  private Singleton2(){}
  private static Singleton2 instance;
  public static synchronized Singleton2 getInstance(){
    if(instance==null){
      instance = new Singleton2();
    }
    return instance;
  }
}
//饿汉模式
class Singleton3{
  private Singleton3(){}
  private static Singleton3 instance = new Singleton3();
  public static Singleton3 getInstance(){
    return instance;
  }
}

单例模式,布布扣,bubuko.com

单例模式

原文:http://www.cnblogs.com/hugo-guo/p/3738519.html

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