单例模式:一个类有且仅有一个实例
class Sigleton(object):
__instance = None
def __new__(cls):
if cls.__instance == None:
cls.__instance = object.__new__(cls)
return cls.__instance
单例模式:一个类有且仅有一个实例
class Sigleton(object):
__instance = None
def __new__(cls):
if cls.__instance == None:
cls.__instance = object.__new__(cls)
return cls.__instance
本文标题:Python单例模式
本文链接:https://www.haomeiwen.com/subject/bctsyhtx.html
网友评论