创建者模式-单例模式

单例设计模式(Singleton Pattern)是一种常见的设计模式,它确保一个类只有一个实例,并提供全局访问点。使用单例模式时,我们通常需要保证以下几点:

  • 只有一个实例:类的实例是唯一的。
  • 提供全局访问点:可以通过类本身来访问该实例。

实现方式

懒汉

  • 只有在第一次使用时才会创建实例。
  • 存在线程不安全问题,通常需要加锁来保证线程安全。
java 复制代码
public class Singleton {
    private static Singleton instance;

    private Singleton() {}

    public static Singleton getInstance() {
        if (instance == null) {
            synchronized (Singleton.class) {
                if (instance == null) {
                    instance = new Singleton();
                }
            }
        }
        return instance;
    }
}

饿汉

  • 在类加载时就创建实例,线程安全,但可能造成资源浪费。
bash 复制代码
public class Singleton {
    private static final Singleton instance = new Singleton();

    private Singleton() {}

    public static Singleton getInstance() {
        return instance;
    }
}

枚举

  • 使用枚举实现单例是最安全且推荐的方式,它不仅避免了线程问题,而且还能防止反序列化重新创建实例。
java 复制代码
public enum Singleton {
    INSTANCE;

    public void someMethod() {
        // 方法实现
    }
}
相关推荐
何朴尧3 小时前
单例模式入门
单例模式
旺代3 小时前
C++设计模式(单例模式)
c++·单例模式·设计模式
虎哥和你一起学编程3 小时前
如何防止序列化破坏单例模式
单例模式
LightOfNight3 小时前
【设计模式】创建型模式之单例模式(饿汉式 懒汉式 Golang实现)
单例模式·设计模式·golang
哥谭居民00019 小时前
在接口实现时使用自定义对象的方法(非工具类,和单例模式)
单例模式
岳轩子1 天前
23种设计模式之单例模式
java·单例模式·设计模式
吃汉堡吃到饱2 天前
【创建型设计模式】单例模式
单例模式·设计模式
程序员与背包客_CoderZ2 天前
C++设计模式——Singleton单例模式
c语言·开发语言·c++·单例模式·设计模式
白茶等风121383 天前
Unity 设计模式-单例模式(Singleton)详解
单例模式·设计模式