当前位置: 首页 > article >正文

详解python的单例模式

单例模式是一种设计模式,它确保一个类只有一个实例,并提供一个全局访问点来获取这个实例。在Python中实现单例模式有多种方法,下面我将详细介绍几种常见的实现方式。

1. 使用模块

Python的模块天然就是单例的,因为模块在第一次导入时会被加载到内存中,之后的导入都是直接使用内存中的模块对象。因此,你可以通过模块来实现单例模式。

# singleton.py
class SingletonClass:
    def __init__(self):
        self.value = "Singleton Value"

singleton_instance = SingletonClass()

# main.py
from singleton import singleton_instance

print(singleton_instance.value)  # 输出: Singleton Value

2. 使用装饰器

你可以使用装饰器来控制类的实例化过程,确保只有一个实例被创建。

def singleton(cls):
    instances = {}
    def get_instance(*args, **kwargs):
        if cls not in instances:
            instances[cls] = cls(*args, **kwargs)
        return instances[cls]
    return get_instance

@singleton
class SingletonClass:
    def __init__(self):
        self.value = "Singleton Value"

instance1 = SingletonClass()
instance2 = SingletonClass()

print(instance1 is instance2)  # 输出: True

3. 使用类方法

你可以在类中定义一个类方法来控制实例的创建。

class SingletonClass:
    _instance = None

    def __init__(self):
        self.value = "Singleton Value"

    @classmethod
    def get_instance(cls):
        if cls._instance is None:
            cls._instance = cls()
        return cls._instance

instance1 = SingletonClass.get_instance()
instance2 = SingletonClass.get_instance()

print(instance1 is instance2)  # 输出: True

4. 使用元类

元类可以控制类的创建过程,因此可以通过元类来实现单例模式。

class SingletonMeta(type):
    _instances = {}

    def __call__(cls, *args, **kwargs):
        if cls not in cls._instances:
            cls._instances[cls] = super().__call__(*args, **kwargs)
        return cls._instances[cls]

class SingletonClass(metaclass=SingletonMeta):
    def __init__(self):
        self.value = "Singleton Value"

instance1 = SingletonClass()
instance2 = SingletonClass()

print(instance1 is instance2)  # 输出: True

5. 使用__new__方法

你可以重写类的__new__方法来控制实例的创建。

class SingletonClass:
    _instance = None

    def __new__(cls, *args, **kwargs):
        if cls._instance is None:
            cls._instance = super().__new__(cls)
        return cls._instance

    def __init__(self):
        self.value = "Singleton Value"

instance1 = SingletonClass()
instance2 = SingletonClass()

print(instance1 is instance2)  # 输出: True

总结

单例模式在Python中有多种实现方式,每种方式都有其优缺点。选择哪种方式取决于具体的应用场景和需求。通常情况下,使用模块或装饰器是最简单和最常见的方式。


http://www.kler.cn/a/526716.html

相关文章:

  • Attention--人工智能领域的核心技术
  • JavaScript系列(50)--编译器实现详解
  • 【电工基础】低压电器元件,低压断路器(空开QF),接触器(KM)
  • springboot使用rabbitmq
  • Linux 进程概念
  • 【自学笔记】计算机网络的重点知识点-持续更新
  • DeepSeek-V3技术报告解读
  • Cocos Creator 3.8 2D 游戏开发知识点整理
  • Sqoop支持ORC文件格式
  • AI大模型开发原理篇-4:神经概率语言模型NPLM
  • 【C++题解】1055. 求满足条件的整数个数
  • GWO优化GRNN回归预测matlab
  • 165. 比较版本号
  • 《解码AI大模型涌现能力:从量变到质变的智能跃迁》
  • 如何利用Docker和.NET Core实现环境一致性、简化依赖管理、快速部署与扩展,同时提高资源利用率、确保安全性和生态系统支持
  • Deepseek r1模型对医疗大模型的发展有什么影响?
  • 线程池以及在QT中的接口使用
  • Carla-ModuleNotFoundError: No module named ‘agents.navigation‘
  • Spring Boot - 数据库集成06 - 集成ElasticSearch
  • 【懒删除堆】力扣2349. 设计数字容器系统
  • 【C语言进阶】- 动态内存管理
  • 【memgpt】letta 课程5:可编程的agent内存
  • [HOT 100] 0003. 无重复字符的最长子串
  • 本地AI模型:未来智能设备的核心驱动力
  • Brave132 编译指南 Windows 篇:构建与运行(七)
  • Python3 【集合】:使用示例参考手册