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

python——设计模式

时间:2017-07-17 10:10:05      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:设计模式   log   method   __init__   foo   span   ssm   bsp   print   

单例模式:
某个类中只有一个实例(对象)

class Foo:
    instance = None
    def __init__(self,name):
        self.name = name

    @classmethod    #类方法
    def get_instance(cls):  #cls类名
        if cls.instance:
            return cls.instance
        else:
            obj=cls(alex)
            cls.instance = obj
            return obj

obj1 = Foo.get_instance()
print(obj1)
obj2 = Foo.get_instance()
print(obj2)

 

python——设计模式

标签:设计模式   log   method   __init__   foo   span   ssm   bsp   print   

原文地址:http://www.cnblogs.com/maxgongzuo/p/7192758.html

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