PHP设计模式入门之迭代器模式原理与实现方法分析
发布:smiling 来源: PHP粉丝网 添加日期:2022-03-02 10:05:35 浏览: 评论:0
本文实例讲述了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来遍历了还要用这样一种迭代器模式来实现,只有等待工作经验的加深来进一步理解吧。
Tags: PHP设计模式 PHP迭代器
- 上一篇:PHP设计模式之迭代器模式Iterator实例分析【对象行为型】
- 下一篇:最后一页
相关文章
- ·php设计模式是什么,该如何理解(2014-06-10)
- ·php设计模式 建造者模式 与Adapter(适配器模式)(2014-08-02)
- ·PHP设计模式之建造者模式定义与用法简单示例(2018-10-13)
- ·PHP设计模式之委托模式定义与用法简单示例(2018-10-13)
- ·PHP设计模式概述(2020-02-15)
- ·php设计模式之单例模式使用示例(2020-08-29)
- ·php设计模式之命令模式使用示例(2020-10-06)
- ·php基础设计模式大全(注册树模式、工厂模式、单列模式)(2021-06-16)
- ·PHP设计模式之简单投诉页面实例(2021-07-11)
- ·实例讲解PHP设计模式编程中的简单工厂模式(2021-07-12)
- ·PHP设计模式之工厂模式详解(2021-08-16)
- ·PHP设计模式之模板方法模式实例浅析(2021-11-02)
- ·php设计模式之迭代器模式实例分析【星际争霸游戏案例】(2022-02-25)
- ·PHP设计模式之迭代器模式Iterator实例分析【对象行为型】(2022-03-02)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)