Python经典面试题11页.doc

上传人:晟*** 文档编号:6141674 上传时间:2021-08-18 格式:DOC 页数:11 大小:31.50KB
下载 相关 举报
Python经典面试题11页.doc_第1页
第1页 / 共11页
Python经典面试题11页.doc_第2页
第2页 / 共11页
Python经典面试题11页.doc_第3页
第3页 / 共11页
Python经典面试题11页.doc_第4页
第4页 / 共11页
Python经典面试题11页.doc_第5页
第5页 / 共11页
点击查看更多>>
资源描述

1:Python如何实现单例模式? Python有两种方式可以实现单例模式,下面两个例子使用了不同的方式实现单例模式:1.class Singleton(type):def _init_(cls, name, bases, dict):super(Singleton, cls)._init_(name, bases, dict)cls.instance = Nonedef _call_(cls, *args, *kw):if cls.instance is None:cls.instance = super(Singleton, cls)._call_(*args, *kw)return cls.instanceclass MyClass(object):_metaclass_ = Singletonprint MyClass()print MyClass()2. 使用decorator来实现单例模式def singleton(cls):instances = def getinstance():if cls

展开阅读全文
相关资源
相关搜索
资源标签

当前位置:首页 > 实用文档资料库 > 公文范文

Copyright © 2018-2021 Wenke99.com All rights reserved

工信部备案号浙ICP备20026746号-2  

公安局备案号:浙公网安备33038302330469号

本站为C2C交文档易平台,即用户上传的文档直接卖给下载用户,本站只是网络服务中间平台,所有原创文档下载所得归上传人所有,若您发现上传作品侵犯了您的权利,请立刻联系网站客服并提供证据,平台将在3个工作日内予以改正。