PHP设计模式入门之迭代器模式原理与实现方法分
网络编程 2021-07-04 23:05www.168986.cn编程入门
这篇文章主要介绍了PHP设计模式入门之迭代器模式原理与实现方法,结合实例形式分析了PHP迭代器模式基本概念、原理、实现方法及操作注意事项,需要的朋友可以参考下
本文实例讲述了PHP设计模式入门之迭代器模式。分享给大家供大家参考,具体如下
在深入研究这个设计模式之前,我们先来看一道面试题,来自鸟哥的博客,
题目是这样的
使对象可以像数组一样进行foreach循环,要求属性必须是私有。
不使用迭代器模式很难实现,先看实现的代码
sample.php
<?php class Sample implements Iterator{ private $_arr; public function __construct(Array $arr){ $this->_arr = $arr; } public function current(){ return current($this->_arr); } public function next(){ return next($this->_arr); } public function key(){ return key($this->_arr); } public function valid(){ return $this->current() !== false; } public function rewind(){ reset($this->_arr); } }
index.php
<?php require '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 through / 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=reset($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!==false; } } $data = array('s1' => 11, 's2' => 22, 's3' => 33); $it = new CMapIterator($data); foreach ($it as $row) { echo $row, '<br />'; }
关于迭代器设计模式官方的定义是使用迭代器模式来提供对聚合对象的统一存取,即提供一个外部的迭代器来对聚合对象进行访问和遍历 , 而又不需暴露该对象的内部结构。又叫做游标(Cursor)模式。
好吧,我不是很能理解。为什么明明数组已经可以用foreach来遍历了还要用这样一种迭代器模式来实现,只有等待工作经验的加深来进一步理解吧。
参考文档
更多关于PHP相关内容感兴趣的读者可查看本站专题《》、《》、《》、《》、《》、《》及《》
希望本文所述对大家PHP程序设计有所帮助。
编程语言
- 如何快速学会编程 如何快速学会ug编程
- 免费学编程的app 推荐12个免费学编程的好网站
- 电脑怎么编程:电脑怎么编程网咯游戏菜单图标
- 如何写代码新手教学 如何写代码新手教学手机
- 基础编程入门教程视频 基础编程入门教程视频华
- 编程演示:编程演示浦丰投针过程
- 乐高编程加盟 乐高积木编程加盟
- 跟我学plc编程 plc编程自学入门视频教程
- ug编程成航林总 ug编程实战视频
- 孩子学编程的好处和坏处
- 初学者学编程该从哪里开始 新手学编程从哪里入
- 慢走丝编程 慢走丝编程难学吗
- 国内十强少儿编程机构 中国少儿编程机构十强有
- 成人计算机速成培训班 成人计算机速成培训班办
- 孩子学编程网上课程哪家好 儿童学编程比较好的
- 代码编程教学入门软件 代码编程教程