所谓类的单例设计模式,就是采取一定的方法保证在整个的软件系统中,对某个类只能存在一个对象实例,并且该类只提供一个取得其对象实例的方法(静态方法)。
比如 Hibernate 的 SessionFactory,它充当数据存储源的代理,并负责创建 Session 对象。SessionFactory 并不是轻量级的,一般情况下,一个项目通常只需要一个 SessionFactory 就够,这是就会使用到单例模式。
单例模式八种方式
应用实例
步骤如下:
构造器私有化 (防止 new)
类的内部创建对象
向外暴露一个静态的公共方法 getInstance
代码实现
public class SingletonDemo01 { public static void main(String[] args) { Singleton01 instance01 = Singleton01.getInstance(); Singleton01 instance02 = Singleton01.getInstance(); System.out.println(instance01 == instance02); // true System.out.println("instance01 hashcode=" + instance01.hashCode()); System.out.println("instance02 hashcode=" + instance02.hashCode()); } } /** * 饿汉式--静态常量 */ class Singleton01 { // 1.构造方法私有化,外部不能 new private Singleton01() { } // 2.定义静态变量 public final static Singleton01 instance = new Singleton01(); // 3.向外暴露一个静态方法 public static Singleton01 getInstance() { return instance; } }
优缺点说明
应用实例
public class SingletonDemo02 { public static void main(String[] args) { Singleton02 instance01 = Singleton02.getInstance(); Singleton02 instance02 = Singleton02.getInstance(); System.out.println(instance01 == instance02); // true System.out.println("instance01 hashcode=" + instance01.hashCode()); System.out.println("instance02 hashcode=" + instance02.hashCode()); } } /** * 饿汉式--静态代码块 */ class Singleton02 { // 1.构造方法私有化,外部不能 new private Singleton02() { } // 2.定义静态变量 public static Singleton02 instance; // 3.静态代码块 static { instance = new Singleton02(); } // 4.向外暴露一个静态方法 public static Singleton02 getInstance() { return instance; } }
优缺点说明
应用实例
public class SingletonDemo03 { public static void main(String[] args) { Singleton03 instance01 = Singleton03.getInstance(); Singleton03 instance02 = Singleton03.getInstance(); System.out.println(instance01 == instance02); // true System.out.println("instance01 hashcode=" + instance01.hashCode()); System.out.println("instance02 hashcode=" + instance02.hashCode()); } } /** * 懒汉式--线程不安全 */ class Singleton03 { // 1.构造方法私有化,外部不能 new private Singleton03() { } // 2.创建静态常量 private static Singleton03 instance; // 3.创建静态方法,供外部调用,当需要实例时,才去创建 instance public static Singleton03 getInstance() { if (instance == null) { instance = new Singleton03(); } return instance; } }
优缺点说明
if(singleton==null)
判断语句块,还未来得及往下执行,另一个线程也通过了这个判断语句,这时便会产生多个实例,造成线程不安全,所以在多线程环境下不可使用这种方式。应用实例
public class SingletonDemo04 { public static void main(String[] args) { Singleton04 instance01 = Singleton04.getInstance(); Singleton04 instance02 = Singleton04.getInstance(); System.out.println(instance01 == instance02); // true System.out.println("instance01 hashcode=" + instance01.hashCode()); System.out.println("instance02 hashcode=" + instance02.hashCode()); } } /** * 懒汉式--线程安全 */ class Singleton04{ // 1.构造方法私有化,外部不能 new private Singleton04() { } // 2.创建静态常量 private static Singleton04 instance; // 3.创建静态方法,供外部调用,当需要实例时,才去创建 instance // 4.加入 synchronized 关键字,解决线程不完全问题 public static synchronized Singleton04 getInstance() { if (instance == null) { instance = new Singleton04(); } return instance; } }
优缺点说明
getInstance()
方法都要进行同步。而其实这个方法只执行一次实例化代码就够了,后面的想获得该类实例,直接return就行了。方法进行同步效率太低。应用实例
public class SingletonDemo05 { public static void main(String[] args) { Singleton05 instance01 = Singleton05.getInstance(); Singleton05 instance02 = Singleton05.getInstance(); System.out.println(instance01 == instance02); // true System.out.println("instance01 hashcode=" + instance01.hashCode()); System.out.println("instance02 hashcode=" + instance02.hashCode()); } } /** * 懒汉式--线程安全--同步代码块 */ class Singleton05{ // 1.构造方法私有化,外部不能 new private Singleton05() { } // 2.创建静态常量 private static Singleton05 instance; // 3.创建静态方法,供外部调用,当需要实例时,才去创建 instance // 4.使用同步代码块 public static Singleton05 getInstance() { if (instance == null) { synchronized (Singleton05.class) { instance = new Singleton05(); } } return instance; } }
优缺点说明
应用实例
public class SingletonDemo06 { public static void main(String[] args) { Singleton06 instance01 = Singleton06.getInstance(); Singleton06 instance02 = Singleton06.getInstance(); System.out.println(instance01 == instance02); // true System.out.println("instance01 hashcode=" + instance01.hashCode()); System.out.println("instance02 hashcode=" + instance02.hashCode()); } } /** * 双重检查 */ class Singleton06 { // 1.构造方法私有化,外部不能直接 new private Singleton06 () { } // 2.创建静态常量 private static Singleton06 instance; // 3.提供静态方法,供外部调用 // 4.使用双重检查,即实现了懒加载的效果,又保证了线程安全,推荐使用 public static Singleton06 getInstance() { if (instance == null) { synchronized (Singleton06.class) { if (instance == null) { instance = new Singleton06(); } return instance; } } return instance; } }
优缺点说明
if(singleton==null)
检查,这样就可以保证线程安全了。if(singleton==null)
,直接 return
实例化对象,也避免的反复进行方法同步。应用实例
public class SingletonDemo07 { public static void main(String[] args) { Singleton07 instance01 = Singleton07.getInstance(); Singleton07 instance02 = Singleton07.getInstance(); System.out.println(instance01 == instance02); // true System.out.println("instance01 hashcode=" + instance01.hashCode()); System.out.println("instance02 hashcode=" + instance02.hashCode()); } } /** * 使用静态内部类的方式实现单例模式 */ class Singleton07 { // 1.构造方法私有化,外部不能直接 new private Singleton07() { } // 2.创建一个静态内部类 private static class Singleton07Instance { private static final Singleton07 INSTANCE = new Singleton07(); } // 3.创建一个静态方法,供外部调用 // 4.JVM 在加载类的时候不会加载静态内部类,在使用到静态内部类的时候才会加载,这样既保证了懒加载的效果,又保证了线程安全 public static Singleton07 getInstance() { return Singleton07Instance.INSTANCE; } }
优缺点说明
getInstance
方法,才会装载 SingletonInstance 类,从而完成 Singleton 的实例化。应用实例
public class SingletonDemo08 { public static void main(String[] args) { Singleton08 instance01 = Singleton08.INSTANCE; Singleton08 instance02 = Singleton08.INSTANCE; System.out.println(instance01 == instance02); // true System.out.println("instance01 hashcode=" + instance01.hashCode()); System.out.println("instance02 hashcode=" + instance02.hashCode()); } } /** * 使用枚举的方式实现单例模式 */ enum Singleton08 { INSTANCE; }
优缺点说明
JDK 中,java.lang.Runtime
就是经典的单例模式(饿汉式)
代码分析 + Debug 源码 + 代码说明
public class Runtime { // 使用静态常量的方式实现单例模式 private static Runtime currentRuntime = new Runtime(); /** * Returns the runtime object associated with the current Java application. * Most of the methods of class <code>Runtime</code> are instance * methods and must be invoked with respect to the current runtime object. * * @return the <code>Runtime</code> object associated with the current * Java application. */ public static Runtime getRuntime() { return currentRuntime; } /** Don't let anyone else instantiate this class */ private Runtime() {} }