首页 > 作文

PHP设计模式入门之迭代器模式原理与实现方法分析

更新时间:2023-04-08 16:26:37 阅读: 评论:0

本文实例讲述了php设计模式入门之迭代器模式。分享给大家供大家参考,具体如下:

在深入研究这个设计模式之前,我们先来看一道面试题,来自鸟哥的博客,

题目是这样的:

使对象可以像数组一样进行foreach循环,要求属性必须是私有。

不使用迭代器模式很难实现,先看实现的代码:

sample.php

<?phpclass sample implements iterator{ private $_arr;  public function __construct(array $arr){ $this->_arr = $arr; }  public function cur尸叔rent(){   return current($this->_arr); }  public function next(){   return next($this->_arr); }  public function key(){   return key($this->_arr); }  public function valid(){   return $this->current() !== fal; }  public function rewind(){  ret($this->_arr); }}

index.php

<?phprequire 'sample.php'; $arr = new sample(['max', 'ben', 'will']);  foreach ($arr as $k=>$v){  echo $k."-".$v."<br />";}

其中iterator接口来自php的spl类库,在写完设计模式的相关文章之后,将会进一步研究这个类库。

另外在网上找到了一段yii框架中关于迭代器模式的实现代码:

class cmapiterator implements iterator {/*** @var array the data to be iterated through*/  private $_d;/*** @var array list of keys in the map*/  private $_keys;/*** @var mixed current key*/  private $_key; /*** constructor.* @param array the data to be iterated th第59届格莱美rough*/  public function __construct(&$data) {    $this->_d=&$data;    $this->_keys=array_keys($data);  } /*六年级班务工作总结** rewinds internal array pointer.* this method is required by the interface iterator.*/  public function rewind() {                                             $this->_key=ret($this->_keys);  } /*** returns the key of the current array element.* this method is required by the interface iterator.* @return mixed the key of the current array element*/  public function key() {    return $this->_key;  } /*** returns the current array element.* this method is required by the interface iterator.* @return mixed the current array element*/  public function current() {    return $this->_d[$this->_key];  } /*** moves the internal pointer to the next array element.* this method is required by the interface iterator.*/  public function next() {    $this->_key=next($this->_keys);  } /*** returns whether there is an element at current position.* this method is required by the interface iterator.* @return boolean*/  public function valid() {    return $this->_key!==fal;  }} $data = array('s1' => 11, 's2' => 22, 's3' => 33);$it = new cmapiterator($data);foreach 尼玛尔($it as $row) 地球中心是什么{  echo $row, '<br />';}

关于迭代器设计模式官方的定义是:使用迭代器模式来提供对聚合对象的统一存取,即提供一个外部的迭代器来对聚合对象进行访问和遍历 , 而又不需暴露该对象的内部结构。又叫做游标(cursor)模式。

好吧,我不是很能理解。为什么明明数组已经可以用foreach来遍历了还要用这样一种迭代器模式来实现,只有等待工作经验的加深来进一步理解吧。

参考文档:

本文发布于:2023-04-08 16:26:35,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/f3819849e63b6c6c1705f6aaf6b10039.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:PHP设计模式入门之迭代器模式原理与实现方法分析.doc

本文 PDF 下载地址:PHP设计模式入门之迭代器模式原理与实现方法分析.pdf

标签:模式   迭代   对象   遍历
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图