码迷,mamicode.com
首页 > 其他好文 > 详细

单例对象

时间:2018-08-24 14:51:46      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:dog   instance   bsp   obj   def   单例对象   highlight   div   one   

单例对象:

每次调用都是同一个对象

单例对象的创建

class Dog(object):
    __instance = None
    
    def __new__(cls):
        if cls.__instance == None:
            cls.instance = object.__new__(cls)
            return cls.__instance
    else:
        return cls.__instance

  

 

单例对象

标签:dog   instance   bsp   obj   def   单例对象   highlight   div   one   

原文地址:https://www.cnblogs.com/zmw-1997/p/9529594.html

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