首页 > 代码库 > python 单例模式(依据元类)

python 单例模式(依据元类)

  1. class Singleton2(type):    

  2.     def __init__(cls, name, bases, dict):    

  3.         super(Singleton2, cls).__init__(name, bases, dict)    

  4.         cls._instance = None    

  5.     def __call__(cls, *args, **kw):    

  6.         if cls._instance is None:    

  7.             cls._instance = super(Singleton2, cls).__call__(*args, **kw)    

  8.         return cls._instance    

  9.     

  10. class MyClass(object):    

  11.     __metaclass__ = Singleton2    

  12.     

  13. one = MyClass()    

  14. two = MyClass()    

  15.     

  16. two.a = 3    

  17. print one.a    

  18. #3    

  19. print id(one)    

  20. #31495472    

  21. print id(two)    

  22. #31495472    

  23. print one == two    

  24. #True    

  25. print one is two    

  26. #True    



python 单例模式(依据元类)