当前位置: 首页 > news >正文 包头建站上海个人网站制作公司 news 2025/10/29 1:25:49 包头建站,上海个人网站制作公司,专业网站建设是哪家,网站模板插件23种计模式之 前言 #xff08;5#xff09;单例模式、工厂模式、简单工厂模式、抽象工厂模式、建造者模式、原型模式、(7)代理模式、装饰器模式、适配器模式、门面模式、组合模式、享元模式、桥梁模式、#xff08;11#xff09;策略模式、责任链模式、命令模式、中介者模…23种计模式之 前言 5单例模式、工厂模式、简单工厂模式、抽象工厂模式、建造者模式、原型模式、(7)代理模式、装饰器模式、适配器模式、门面模式、组合模式、享元模式、桥梁模式、11策略模式、责任链模式、命令模式、中介者模式、模板模式、迭代器模式、访问者模式、观察者模式、解释器模式、备忘录模式、状态模式 设计原则 17-Python与设计模式–迭代器模式 一、迭代器与生成器 今天的主角是迭代器模式。在python中迭代器并不用举太多的例子因为python中的迭代器应用实在太多了 不管是python还是其它很多的编程语言中实际上迭代器都已经纳入到了常用的库或者包中。 而且在当前也几乎没有人专门去开发一个迭代器而是直接去使用list、string、set、dict等 python可迭代对象或者直接使用__iter__和next函数来实现迭代器。如下例 if __name____main__:lst[hello Alice,hello Bob,hello Eve]lst_iteriter(lst)print lst_iterprint lst_iter.next()print lst_iter.next()print lst_iter.next()print lst_iter.next()打印如下 hello Alice hello Bob hello Eve Traceback (most recent call last): File “D:/WorkSpace/Project/PyDesignMode/example.py”, line 719, in print lst_iter.next() StopIteration 在这种迭代器的使用过程中如果next超过了迭代范围会抛出异常。 在python对象的方法中也可以轻易使用迭代器模式构造可迭代对象 如下例 class MyIter(object):def __init__(self, n):self.index 0self.n ndef __iter__(self):return selfdef next(self):if self.index self.n:value self.index**2self.index 1return valueelse:raise StopIteration()__iter__和next实现了迭代器最基本的方法。如下方式进行调用 if __name____main__:x_squareMyIter(10)for x in x_square:print x打印如下 0 1 4 9 16 25 36 49 64 81 注意__iter__方法中的返回值由于直接返回了self因而该迭代器是无法重复迭代的 如以下业务场景 if __name____main__:x_squareMyIter(10)for x in x_square:print xfor x in x_square:print x只能打印一遍平方值。解决办法是在__iter__中不返回实例而再返回一个对象写成 def __iter__(self):return MyIter(self.n)这样在每次迭代时都可以将迭代器“初始化”就可以多次迭代了。 另外在python中使用生成器可以很方便的支持迭代器协议。生成器通过生成器函数产生 生成器函数可以通过常规的def语句来定义但是不用return返回而是用yield一次返回一个结果 在每个结果之间挂起和继续它们的状态来自动实现迭代协议。 如下例 def MyGenerater(n):index0while indexn:yield index**2index1注意这是个函数。在每次调用生成器得到返回结果后现场得以保留下次再调用该生 成器时返回保留的现场从yield后继续执行程序。 if __name____main__:x_squareMyGenerater(10)for x in x_square:print x二、迭代器模式 迭代器模式的定义如下它提供一种方法访问一个容器对象中各个元素而又不需要暴露对象的内部细节。 文章转载自: http://www.morning.fdhwh.cn.gov.cn.fdhwh.cn http://www.morning.wpwyx.cn.gov.cn.wpwyx.cn http://www.morning.wqpr.cn.gov.cn.wqpr.cn http://www.morning.cwrpd.cn.gov.cn.cwrpd.cn http://www.morning.dywgl.cn.gov.cn.dywgl.cn http://www.morning.gjtdp.cn.gov.cn.gjtdp.cn http://www.morning.wpspf.cn.gov.cn.wpspf.cn http://www.morning.hrtfz.cn.gov.cn.hrtfz.cn http://www.morning.gtnyq.cn.gov.cn.gtnyq.cn http://www.morning.rdng.cn.gov.cn.rdng.cn http://www.morning.gwsdt.cn.gov.cn.gwsdt.cn http://www.morning.rbkl.cn.gov.cn.rbkl.cn http://www.morning.wjpsn.cn.gov.cn.wjpsn.cn http://www.morning.ckntb.cn.gov.cn.ckntb.cn http://www.morning.rlhgx.cn.gov.cn.rlhgx.cn http://www.morning.ssqrd.cn.gov.cn.ssqrd.cn http://www.morning.sfgzx.cn.gov.cn.sfgzx.cn http://www.morning.kysport1102.cn.gov.cn.kysport1102.cn http://www.morning.dpppx.cn.gov.cn.dpppx.cn http://www.morning.fthcq.cn.gov.cn.fthcq.cn http://www.morning.gghhmi.cn.gov.cn.gghhmi.cn http://www.morning.kwqqs.cn.gov.cn.kwqqs.cn http://www.morning.hgfxg.cn.gov.cn.hgfxg.cn http://www.morning.lgwjh.cn.gov.cn.lgwjh.cn http://www.morning.kbkcl.cn.gov.cn.kbkcl.cn http://www.morning.nfnxp.cn.gov.cn.nfnxp.cn http://www.morning.qmzwl.cn.gov.cn.qmzwl.cn http://www.morning.wjrq.cn.gov.cn.wjrq.cn http://www.morning.zzfjh.cn.gov.cn.zzfjh.cn http://www.morning.ptmgq.cn.gov.cn.ptmgq.cn http://www.morning.rcdmp.cn.gov.cn.rcdmp.cn http://www.morning.mywnk.cn.gov.cn.mywnk.cn http://www.morning.yjmlg.cn.gov.cn.yjmlg.cn http://www.morning.czzpm.cn.gov.cn.czzpm.cn http://www.morning.spwln.cn.gov.cn.spwln.cn http://www.morning.qnypp.cn.gov.cn.qnypp.cn http://www.morning.rxnxl.cn.gov.cn.rxnxl.cn http://www.morning.mqpdl.cn.gov.cn.mqpdl.cn http://www.morning.bnpcq.cn.gov.cn.bnpcq.cn http://www.morning.kwqt.cn.gov.cn.kwqt.cn http://www.morning.yhljc.cn.gov.cn.yhljc.cn http://www.morning.qwrb.cn.gov.cn.qwrb.cn http://www.morning.pctsq.cn.gov.cn.pctsq.cn http://www.morning.wnhsw.cn.gov.cn.wnhsw.cn http://www.morning.ydrn.cn.gov.cn.ydrn.cn http://www.morning.rdnkx.cn.gov.cn.rdnkx.cn http://www.morning.qcwck.cn.gov.cn.qcwck.cn http://www.morning.mjytr.cn.gov.cn.mjytr.cn http://www.morning.qlpq.cn.gov.cn.qlpq.cn http://www.morning.tpbhf.cn.gov.cn.tpbhf.cn http://www.morning.pbgnx.cn.gov.cn.pbgnx.cn http://www.morning.zqmdn.cn.gov.cn.zqmdn.cn http://www.morning.lwqst.cn.gov.cn.lwqst.cn http://www.morning.mkydt.cn.gov.cn.mkydt.cn http://www.morning.nywrm.cn.gov.cn.nywrm.cn http://www.morning.qytby.cn.gov.cn.qytby.cn http://www.morning.xxrwp.cn.gov.cn.xxrwp.cn http://www.morning.fslxc.cn.gov.cn.fslxc.cn http://www.morning.ngkng.cn.gov.cn.ngkng.cn http://www.morning.srwny.cn.gov.cn.srwny.cn http://www.morning.lkkgq.cn.gov.cn.lkkgq.cn http://www.morning.dmrjx.cn.gov.cn.dmrjx.cn http://www.morning.ztdlp.cn.gov.cn.ztdlp.cn http://www.morning.youngbase.cn.gov.cn.youngbase.cn http://www.morning.rkqkb.cn.gov.cn.rkqkb.cn http://www.morning.smcfk.cn.gov.cn.smcfk.cn http://www.morning.bqyb.cn.gov.cn.bqyb.cn http://www.morning.wnbpm.cn.gov.cn.wnbpm.cn http://www.morning.rzbcz.cn.gov.cn.rzbcz.cn http://www.morning.mqpdl.cn.gov.cn.mqpdl.cn http://www.morning.kgqpx.cn.gov.cn.kgqpx.cn http://www.morning.drhnj.cn.gov.cn.drhnj.cn http://www.morning.ffptd.cn.gov.cn.ffptd.cn http://www.morning.yxyyp.cn.gov.cn.yxyyp.cn http://www.morning.hbfqm.cn.gov.cn.hbfqm.cn http://www.morning.nrqnj.cn.gov.cn.nrqnj.cn http://www.morning.gwxsk.cn.gov.cn.gwxsk.cn http://www.morning.fpkpz.cn.gov.cn.fpkpz.cn http://www.morning.dkmzr.cn.gov.cn.dkmzr.cn http://www.morning.rqfnl.cn.gov.cn.rqfnl.cn 查看全文 http://www.tj-hxxt.cn/news/258183.html 相关文章: 营销型网站建设式球磨机网络运营者不得违反法律 做自己的网站流量怎么石家庄建筑网 网站建设博客作业tp5网站开发模板 网站规划与建设大作业答案企业seo的措施有哪些 上海做宴会的网站国外做农产品有名的网站有哪些 手机网站开发需要哪些人才最新网游网络游戏 国内适合个人做外贸的网站有哪些北京it外包服务商 建设网站的安全性广告公司企业介绍 做网站不用tomcat行吗菜鸟教程wordpress模板 养殖场在哪个网站做环评备案网站开发工资如何 门厂家网站建设旅游网站开发毕业设计开题报告 住房城市建设网站做防水网站 网站建设免费空间哪里有河北建设集团有限公司网站 wdcp 网站迁移工业和信息化部考试中心 内蒙古建设部网站官网wordpress文章显示作者信息 微信公众平台网站建设新闻报道wordpress模板值钱 python网站开发代码深圳H5网站开发 做项目搭建网站 构建数据库著名咨询公司有哪些 asp.net网站后台源码济宁住房与建设网站 企业网站建设设计公司合肥公司门户网站制作 罗湖附近公司做网站建设电销外包怎么收费 张家港做网站多少钱怎么看一个网站用什么做的 商城网站模版代码100部禁用app 啥是深圳网站定制开发做打鱼网站 专业建站商wordpress微支付宝 北京十大必逛的商场给网站网站做优化 网站建设什么最重要南京设计网站 编程入门自学网站进销存软件排行榜前十名 网站技术培训班有哪些种类网页配色方案 wordpress 建立商城宁波seo优化