当前位置: 首页 > news >正文

国内做涂装生产线网站微信小程序推送消息给用户

国内做涂装生产线网站,微信小程序推送消息给用户,怎么制作小视频,台江网站建设一、迭代器模式简介(Brief Introduction) 迭代器模式(Iterator Pattern)#xff0c;提供一种方法顺序访问一个聚合对象中元素#xff0c;而不暴露改集合对象的内部表示。 Provide a way to access the elements of an aggregate object sequentially without exposing its un…一、迭代器模式简介(Brief Introduction)   迭代器模式(Iterator Pattern)提供一种方法顺序访问一个聚合对象中元素而不暴露改集合对象的内部表示。   Provide a way to access the elements of an aggregate object sequentially without exposing its underlying representation. 二、解决的问题(What To Solve)       在软件构建过程中集合对象内部结构常常变化各异。但对于这些集合对象我们希望在不暴露其内部结构的同时可以让外部客户代码透明地访问其中包含的元素同时这种“透明遍历”也为“同一种算法在多种集合对象上进行操作”提供了可能。   当需要访问一个聚集对象而且不管这些对象是什么都需要遍历的时候应该考虑用迭代器模式;当需要对聚集有多种方式遍历时可以考虑使用迭代器模式。其中你不用关心到底是什么样子的数组作为对象集合是Array是List还是简单的数组迭代器模式会提供给你一个聚合对象的遍历方式而不用去了解具体是在遍历什么类型的聚合对象。 三、代码 View Code using System; using System.Collections.Generic; using System.Text;namespace IteratePattern {public class Guest{public string id{get;set;}public string name{get;set;}public Guest(string aId, string aName){id aId;name aName;}}public interface IAggrate{IIterator GetIterator();}public class ConcreateAggrate:IAggrate{Listobject _guest new Listobject();public IIterator GetIterator(){return new ConcreateIterator(this);}public object this[int index]{get{return _guest[index];}set{_guest.Add(value);}}public int count(){return _guest.Count;}}public interface IIterator{bool Next();}class ConcreateIterator : IIterator{ConcreateAggrate _aggrate;int currentindex;public ConcreateIterator(ConcreateAggrate aAggrate){_aggrate aAggrate;currentindex -1;}public object Current{get { return _aggrate[currentindex]; }}public bool Next(){currentindex;return _aggrate.count() currentindex;}}class Program{static void Main(string[] args){ConcreateAggrate aAggrate new ConcreateAggrate();aAggrate[0] new Guest(1, hi);aAggrate[1] new Guest(2, my);aAggrate[2] new Guest(3, dear);aAggrate[3] new Guest(4, iterator);aAggrate[4] new Guest(5, pattern);//ConcreateIterator aIterator new ConcreateIterator(aAggrate);ConcreateIterator aIterator (ConcreateIterator)aAggrate.GetIterator();while (aIterator.Next())Console.WriteLine(((Guest)aIterator.Current).name);}} }   举例Iterator应用   下面是迭代器所拥有的最小集合Current是属性只能Get不能Set。还有两个方法MoveNext是往下一个元素走如果访问到最后一个元素之后没有元素了就返回FalseReset是复位回到初始位置。   如果有一个容器实现了IEnumerable接口它就可以支持我们的迭代操作了。这种设计模式已经内化为C#语言的一种元素了就是Foreach关键字。我们定义的容器首先要实现IEnumerable接口实现的GetEnumerator方法要返回一个IEnumerator的类型的集合。 View Code using System; using System.Collections.Generic; using System.Text; using System.Collections;namespace IteratePattern {public class Guest{public string id{get;set;}public string name{get;set;}public Guest(string aId, string aName){id aId;name aName;}}public class ConcreateAggrate:IEnumerable{Listobject _guest new Listobject();public object this[int index]{get{return _guest[index];}set{_guest.Add(value);}}public int count(){return _guest.Count;}#region IEnumerable 成员IEnumerator IEnumerable.GetEnumerator(){return new ConcreateIterator(this);}#endregion}class ConcreateIterator : IEnumerator{ConcreateAggrate _aggrate;int currentindex;public ConcreateIterator(ConcreateAggrate aAggrate){_aggrate aAggrate;currentindex -1;}#region IEnumerator 成员object IEnumerator.Current{get { return _aggrate[currentindex]; }}bool IEnumerator.MoveNext(){currentindex;return _aggrate.count() currentindex;}void IEnumerator.Reset(){currentindex -1;}#endregion}class Program{static void Main(string[] args){ConcreateAggrate aAggrate new ConcreateAggrate();aAggrate[0] new Guest(1, hi);aAggrate[1] new Guest(2, my);aAggrate[2] new Guest(3, dear);aAggrate[3] new Guest(4, iterator);aAggrate[4] new Guest(5, pattern);foreach (Guest aGuest in aAggrate)Console.WriteLine(aGuest.name);}} }     Foreach的工作机制 IEnumerator ietor aAggrate.GetEnumerator();while(ietor.MoveNext()){Guest aGuest (Guest)ietor.Current;Console.WriteLine(aGuest);}     遍历代码中访问的全部是接口而不用关心集合的内部结构。上面的代码等同于下面的Foreach。 结构Structure   Iterator模式的几个要点   迭代抽象访问一个聚合对象的内容而无需暴露它的内部表示。迭代多态为遍历不同的集合结构提供一个统一的接口从而支持同样的算法在不同的集合结构上进行操作。例如假设我们有一个求和算法   它可以操作在多个支持迭代器的集合上如果把这个算法写成ArrayList的话就会非常受限制。同时我们更可以用C#的Foreach语句来写。   我们的算法应该是独立的写的时候应该尽量操作接口这样我们写好一个算法就能应对N种集合的变化使得同样的算法能在不同的集合上操作。迭代器的健壮性考虑遍历的同时更改迭代器所在的集合结构会导致问题。也就是说我们在迭代的时候应该只是读取操作不能更改容器的接口例如遍历的时候删除一个元素这样是不可以的。容器的结构师绝对不能碰的一旦结构更改遍历就会出问题。   下面这种情况对i进行更改是不会影响原来的数组内容的因为i是int类型它只是一份拷贝。   我们一定要给用户提供尽量纯只读的迭代。保证每个元素被且只被遍历一次。 引自山天大畜博客园http://www.cnblogs.com/cdts_change/archive/2010/10/17/1853689.html 总结Conclusion 从上面的几个示例中就可以看出尽管我们没有显示的引用迭代器但实质还是通过迭代器来遍历的。总地来说迭代器模式就是分离了集合对象的迭代行为抽象出一个迭代器类来负责这样既可做到不暴露集合的内部结构又可以让外部代码可以透明的访问集合内部的元素。   迭代器模式在访问数组、集合、列表等数据时尤其是数据库数据操作时是非常普遍的应用但由于它太普遍了所以各种高级语言都对他进行了封装所以反而给人感觉此模式本身不太常用了。   转载请注明出处Edward_jie,http://www.cnblogs.com/promise-7/archive/2012/05/28/2521918.html
http://www.sadfv.cn/news/12649/

相关文章:

  • 门户网站建设与运行开发前端和后端的区别
  • 旅行社做境外购物网站网站开发三个月能学会吗
  • 做网站的难点自贡做网站
  • 余杭区建设局网站舟山市普陀区建设局网站
  • 散文网站模板百度爱采购服务商查询
  • 社交网站wap模板陈欧做聚美优品网站
  • 阿里巴巴国际站做2个网站有用吗wordpress js放到oss
  • 更改备案网站名称wordpress主题会员付费
  • 上饶市建设局有什么网站网站建设维护费怎么说
  • 便宜的seo网站优化排名网站备案中国开头
  • 邢台移动网站建设服务网站描述怎么设置
  • 手机网站跳转怎么做关于建设网站群的报告
  • 珠宝玉器监测网站建设方案百度文档怎么免费下vvv
  • 万维网站建设个人简介网页制作模板代码
  • 嘉兴市做网站优化网址注册平台
  • 网站批量上传文章公司网站空间申请
  • 河南县网站建设公司仙桃哪里做网站
  • 无人在线观看高清完整视频下载seo入门培训学校
  • h5自适应网站模板服务器
  • 网站开发专利上海网站建设优
  • 做网站会用到什么语言营销型网站建设明细报
  • 淮安那家公司做网站网站描述如何写利于优化
  • 分分作网站备案查询网
  • 虚拟网站免费注册网站怎么推广比较好
  • 漯河网站推广公司安卓开发网站开发
  • 青岛建设网站的公司网站系统建设费用
  • 做建材的网站最好的网站建设用途
  • 网站如何添加js代码宁波外贸行业现状
  • 西宁建设网站软件学软件开发学费多少钱
  • 邯山区建设局网站邢台当地网站建设