单例模式(Singleton Pattern)
程序员文章站
2022-07-14 07:57:29
...
一、单例模式的要点有三个:
1、某个类只能有一个实例。
2、必须自行创建这个实例。
3、必须自行向整个系统提供这个实例。
二、应用情景:
1、系统只需要一个实例的对象。
2、客户调用类的单个实例只允许使用一个公共访问点。
三、范例
public class Singleton {
private static Singleton instance = new Singleton();
//将构造函数置为私有,防止被外部实例化
private Singleton(){
}
public static Singleton getInstance(){
return instance;
}
}
public class Singleton {
private static Singleton instance = null;
private Singleton(){
}
public static synchronized Singleton getInstance(){
if(instance==null){
instance = new Singleton();
}
return instance;
}
}
有时在某些情况下,使用Singleton并不能达到Singleton的目的,如有多个Singleton对象同时被不同的类装入器装载;在EJB这样的分布式系统中使用也要注意这种情况,因为EJB是跨服务器,跨JVM的。
上一篇: 字符串匹配之KMP算法