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

python基础之单例设计模式

时间:2018-11-09 10:51:23      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:pytho   def   *args   设计模式   sel   函数   思路   int   super   

class Player():
    instance = None
    init_flag = False

    def __init__(self):

        if self.init_flag is False:
            print("初始化...")
            self.init_flag = True

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

if __name__ == __main__:
    p1 = Player()
    p2 = Player()
    p3 = Player()
    p4 = Player()
    print(p1)
    print(p2)
    print(p3)
    print(p4)

整体思路,用一个类属性来记录是否已经执行过这个函数,如果执行过了,改下类属性的值,然后判断这个值来进行单例模式

 

python基础之单例设计模式

标签:pytho   def   *args   设计模式   sel   函数   思路   int   super   

原文地址:https://www.cnblogs.com/blog-rui/p/9933410.html

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