V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
推荐学习书目
Learn Python the Hard Way
Python Sites
PyPI - Python Package Index
http://diveintopython.org/toc/index.html
Pocoo
值得关注的项目
PyPy
Celery
Jinja2
Read the Docs
gevent
pyenv
virtualenv
Stackless Python
Beautiful Soup
结巴中文分词
Green Unicorn
Sentry
Shovel
Pyflakes
pytest
Python 编程
pep8 Checker
Styles
PEP 8
Google Python Style Guide
Code Style from The Hitchhiker's Guide
zywscq
V2EX  ›  Python

Python 如何实现单例模式

  •  
  •   zywscq · 114 天前 · 1641 次点击
    这是一个创建于 114 天前的主题,其中的信息可能已经有所发展或是发生改变。

    模版如下:

    class Singleton:
        __instance = None
        def __new__(cls, *args):
            if cls.__instance is None:
                cls.__instance = object.__new__(cls, *args)
            return cls.__instance
    

    原文链接: https://medium.com/techtofreedom/3-levels-of-understanding-the-singleton-pattern-in-python-4bf429a10438?sk=392159676dc87218a1b7b8c6830bc277

    9 条回复    2024-01-05 17:58:41 +08:00
    vicalloy
        1
    vicalloy  
       114 天前   ❤️ 3
    我一直没明白为啥这么多人不遗余力的在 Python 里给出各种不同的单例子实现方法。
    对于 Python 来说最简单的单例不应当就是这样吗

    singleton = Singleton()

    或者你想要 lazy
    _singleton: Singleton = None

    def get_singleton():
    global _singleton
    if _singleton is None:
    _singleton = Singleton()
    return _singleton
    fcfangcc
        2
    fcfangcc  
       114 天前
    赞同 1 楼,全局变量一把梭
    QiShine
        3
    QiShine  
       114 天前
    OOP 都快成了一种邪教
    wzwwzw
        4
    wzwwzw  
       114 天前
    可以比一楼 在优雅一点,把放到 TLS 里面可以了。
    ```python
    import threading

    _tls - threading.local()

    def get_singleton():

    if not hasattr(_tls, 'single'):
    _tls.single = Singleton()

    return _tls.single
    ```
    julyclyde
        5
    julyclyde  
       114 天前
    @wzwwzw 你这个是不是“每个线程”一例啊?
    vicalloy
        6
    vicalloy  
       114 天前
    另外 Java 里的单例构造函数是私有的,你只能通过特定的方法来获取实例,这样你会明确的知道这个类是单例。
    对于大多 Python 里的单例,用的地方都 Singleton() 这么来一下。除了看文档,或是在类的名字上加个 Singleton ,根本就没法知道这个类是单例。
    wzwwzw
        7
    wzwwzw  
       113 天前
    @julyclyde 可以这么理解,Python 的多线程是复杂的。
    CHchenkeyi
        8
    CHchenkeyi  
       113 天前
    在 A 文件中创建对象,并在其他文件引入
    lolizeppelin
        9
    lolizeppelin  
       112 天前
    用元类装饰器

    ```python
    class Singleton(type):
    _instances = {}
    _semaphores = lockutils.Semaphores()

    def __call__(cls, *args, **kwargs):
    with lockutils.lock('singleton_lock', semaphores=cls._semaphores):
    if cls not in cls._instances:
    cls._instances[cls] = super(Singleton, cls).__call__(
    *args, **kwargs)
    return cls._instances[cls]

    singleton = six.add_metaclass(Singleton)


    @singleton
    class Myclass():
    ....


    ```


    写一个通用的非常方便

    缺点时候被装饰的类本身也有元类操作时就出错了
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   2898 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 35ms · UTC 07:50 · PVG 15:50 · LAX 00:50 · JFK 03:50
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.