码迷,mamicode.com
首页 > 编程语言 > 详细

python中单例模式的实现-通过闭包函数和魔术方法__new__实现单例模式

时间:2020-01-06 21:09:27      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:*args   style   pytho   not   str   函数   turn   python   app   

1、通过闭包函数实现单例模式:

# 使用闭包函数实现单例
def single(cls, *args, **kwargs):
    instance = {}

    def get_instance():
        if cls not in instance:
            instance[cls] = cls(*args, **kwargs)
        return instance[cls]
    return get_instance


@single
class Apple:
    pass


a = Apple()
b = Apple()
print(id(a))
print(id(b))

2、通过python中魔术方法__new__实现单例模式:

class Single:
    def __new__(cls, *args, **kwargs):
        if not hasattr(cls, _instance):
            cls._instance = super(Single, cls).__new__(cls)
        return cls._instance


s1 = Single()
s2 = Single()
print(id(s1))
print(id(s2))

python中单例模式的实现-通过闭包函数和魔术方法__new__实现单例模式

标签:*args   style   pytho   not   str   函数   turn   python   app   

原文地址:https://www.cnblogs.com/benben-wu/p/12158397.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!