python 单例模式

2022/2/21 17:56:14

本文主要是介绍python 单例模式,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

class Test(object):
 
    __instance = None
 
    def __init__(self):
        print("----init方法----")

    def __new__(cls):
        print("----new方法----")
        if cls.__instance == None:
            cls.__instance = object.__new__(cls)
        return cls.__instance

test1 = Test()
print(id(test1))

test2 = Test()
print(id(test2))

#单例模式id值是一样的

 

 



这篇关于python 单例模式的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程