当前位置:   article > 正文

设计模式-创建型模式-单例模式

设计模式-创建型模式-单例模式

0 引言

创建型模式(Creational Pattern)关注对象的创建过程,是一类最常用的设计模式,每个创建型模式都通过采用不同的解决方案来回答3个问题:创建什么(What),由谁创建(Who)和何时创建(When)。

 1 单例模式

单例模式有3个要点:①某个类只能有一个实例;②它必须自行创建这个实例;③它必须自行向整个系统提供这个实例。

单例模式(Singleton),保证一个类仅有一个实例,并提供一个访问它的全局访问点。[DP]

1.1 饿汉单例模式

 在类加载的时候就已经实例化,并且创建单例对象,以后直接使用即可。这种模式下,类加载较慢,但获取对象的速度快,且线程安全。

  1. public class HungrySingleton {
  2. // 在类加载时就已经完成了实例的初始化
  3. private static final HungrySingleton instance = new HungrySingleton();
  4. // 构造器私有,防止外部通过new关键字创建对象
  5. private HungrySingleton() {}
  6. // 提供全局访问点
  7. public static HungrySingleton getInstance() {
  8. return instance;
  9. }
  10. // 如果需要,可以添加其他方法或属性
  11. public void showMessage() {
  12. System.out.println("This is an instance of HungrySingleton.");
  13. }
  14. public static void main(String[] args) {
  15. // 获取单例对象
  16. HungrySingleton instance1 = HungrySingleton.getInstance();
  17. HungrySingleton instance2 = HungrySingleton.getInstance();
  18. // 输出实例,验证是否为同一个对象
  19. System.out.println(instance1);
  20. System.out.println(instance2);
  21. // 验证是否为同一个对象的引用
  22. System.out.println(instance1 == instance2);
  23. // 调用实例方法
  24. instance1.showMessage();
  25. }
  26. }

1.2 懒汉单例模式

一开始不会实例化,什么时候用就什么时候进行实例化。这种模式下,类加载较快,但获取对象的速度稍慢,且可能在多线程情况下出现线程安全问题。

 存在线程安全问题,

  1. public class LazySingleton {
  2. // 私有静态实例,初始化为null
  3. private static LazySingleton instance = null;
  4. // 私有构造方法,防止外部通过new关键字创建对象
  5. private LazySingleton() {}
  6. // 提供全局访问点
  7. public static LazySingleton getInstance() {
  8. if (instance == null) {
  9. instance = new LazySingleton();
  10. }
  11. return instance;
  12. }
  13. // 如果需要,可以添加其他方法或属性
  14. public void showMessage() {
  15. System.out.println("This is an instance of LazySingleton.");
  16. }
  17. public static void main(String[] args) {
  18. // 获取单例对象
  19. LazySingleton instance1 = LazySingleton.getInstance();
  20. // 调用实例方法
  21. instance1.showMessage();
  22. }
  23. }

加锁,

  1. public class LazySingleton {
  2. // 私有静态实例,初始化为null
  3. private static LazySingleton instance = null;
  4. // 私有构造方法,防止外部通过new关键字创建对象
  5. private LazySingleton() {}
  6. // 同步方法,提供全局访问点
  7. public static synchronized LazySingleton getInstance() {
  8. if (instance == null) {
  9. instance = new LazySingleton();
  10. }
  11. return instance;
  12. }
  13. // 如果需要,可以添加其他方法或属性
  14. public void showMessage() {
  15. System.out.println("This is an instance of LazySingleton.");
  16. }
  17. public static void main(String[] args) {
  18. // 获取单例对象
  19. LazySingleton instance1 = LazySingleton.getInstance();
  20. LazySingleton instance2 = LazySingleton.getInstance();
  21. // 输出实例,验证是否为同一个对象
  22. System.out.println(instance1);
  23. System.out.println(instance2);
  24. // 验证是否为同一个对象的引用
  25. System.out.println(instance1 == instance2);
  26. // 调用实例方法
  27. instance1.showMessage();
  28. }
  29. }

然而,同步方法会导致性能下降,因为每次调用getInstance()方法时都需要进行同步。为了解决这个问题,可以使用双重校验锁(Double-Checked Locking,DCL)来实现更高效的懒汉单例模式:现在这样,我们不用让线程每次都加锁,而只是在实例未被创建的时候再加锁处理。同时也能保证多线程的安全。这种做法被称为Double-Check Locking(双重锁定)。

  1. public class LazySingletonWithDCL {
  2. // volatile关键字确保instance在多线程环境下被正确初始化
  3. private static volatile LazySingletonWithDCL instance = null;
  4. // 私有构造方法,防止外部通过new关键字创建对象
  5. private LazySingletonWithDCL() {}
  6. // 提供全局访问点
  7. public static LazySingletonWithDCL getInstance() {
  8. if (instance == null) {
  9. // 第一次检查
  10. synchronized (LazySingletonWithDCL.class) {
  11. if (instance == null) {
  12. // 第二次检查
  13. instance = new LazySingletonWithDCL();
  14. }
  15. }
  16. }
  17. return instance;
  18. }
  19. // 如果需要,可以添加其他方法或属性
  20. public void showMessage() {
  21. System.out.println("This is an instance of LazySingletonWithDCL.");
  22. }
  23. public static void main(String[] args) {
  24. // 获取单例对象
  25. LazySingletonWithDCL instance1 = LazySingletonWithDCL.getInstance();
  26. LazySingletonWithDCL instance2 = LazySingletonWithDCL.getInstance();
  27. // 输出实例,验证是否为同一个对象
  28. System.out.println(instance1);
  29. System.out.println(instance2);
  30. // 验证是否为同一个对象的引用
  31. System.out.println(instance1 == instance2);
  32. // 调用实例方法
  33. instance1.showMessage();
  34. }
  35. }

使用内部静态类来实现单例模式,这种方式的特点是利用了类加载机制来保证初始化实例时只有一个实例被创建,并且由于JVM的类加载机制,这种方式是线程安全的。只适合java。

  1. public class Singleton {
  2. // 私有构造方法,防止外部通过new关键字创建对象
  3. private Singleton() {}
  4. // 静态内部类,持有单例对象
  5. private static class SingletonHolder {
  6. // 静态初始化器,由JVM保证线程安全
  7. private static final Singleton INSTANCE = new Singleton();
  8. }
  9. // 提供全局访问点
  10. public static Singleton getInstance() {
  11. return SingletonHolder.INSTANCE;
  12. }
  13. // 如果需要,可以添加其他方法或属性
  14. public void showMessage() {
  15. System.out.println("This is an instance of Singleton.");
  16. }
  17. public static void main(String[] args) {
  18. // 获取单例对象
  19. Singleton instance1 = Singleton.getInstance();
  20. Singleton instance2 = Singleton.getInstance();
  21. // 输出实例,验证是否为同一个对象
  22. System.out.println(instance1);
  23. System.out.println(instance2);
  24. // 验证是否为同一个对象的引用
  25. System.out.println(instance1 == instance2);
  26. // 调用实例方法
  27. instance1.showMessage();
  28. }
  29. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/157611
推荐阅读
相关标签
  

闽ICP备14008679号