python的单例模式

2018-06-17 23:27:56来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

class Solution:
    # @return: The same instance of this class every time
    __instance = None
    def __init__(self):
        pass
    @classmethod
    def getInstance(cls):
        # write your code here
        if Solution.__instance is None:
            Solution.__instance = Solution()
        return Solution.__instance

  

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:洗礼灵魂,修炼python(64)--爬虫篇—re模块/正则表达式(2)

下一篇:python3速查参考- python基础 4 -> 元组 + 字典 + 字符串 的