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


Posted in PHP onApril 26, 2020

本文实例讲述了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 相关文章推荐
phpMyAdmin链接MySql错误 个人解决方案
Dec 28 PHP
使用ThinkPHP自带的Http类下载远程图片到本地的实现代码
Aug 02 PHP
php class中public,private,protected的区别以及实例分析
Jun 18 PHP
php实现httpRequest的方法
Mar 13 PHP
PHP+HTML+JavaScript+Css实现简单爬虫开发
Mar 28 PHP
PHP中SQL查询语句的id=%d解释(推荐)
Dec 10 PHP
ThinkPHP中类的构造函数_construct()与_initialize()的区别详解
Mar 13 PHP
PHP编程实现阳历转换为阴历的方法实例
Aug 08 PHP
PHP命名空间namespace及use的简单用法分析
Aug 03 PHP
thinkphp5.0整合phpsocketio完整攻略(绕坑)
Oct 12 PHP
PHP聊天室简单实现方法详解
Dec 08 PHP
PHP递归算法的简单实例
Feb 28 PHP
PHP中迭代器的简单实现及Yii框架中的迭代器实现方法示例
Apr 26 #PHP
PHP设计模式之迭代器模式Iterator实例分析【对象行为型】
Apr 26 #PHP
Yii Framework框架开发微信公众平台示例
Apr 26 #PHP
PHP随机生成中文段落示例【测试网站内容时使用】
Apr 26 #PHP
PHP过滤器 filter_has_var() 函数用法实例分析
Apr 23 #PHP
PHP优化之批量操作MySQL实例分析
Apr 23 #PHP
Thinkphp 框架扩展之Widget扩展实现方法分析
Apr 23 #PHP
You might like
php通过COM类调用组件的实现代码
2012/01/11 PHP
php恢复数组的key为数字序列的方法
2015/04/28 PHP
PHP自定义递归函数实现数组转JSON功能【支持GBK编码】
2018/07/17 PHP
yii2实现Ueditor百度编辑器的示例代码
2018/11/02 PHP
TP5框架实现自定义分页样式的方法示例
2020/04/05 PHP
解析URI与URL之间的区别与联系
2013/11/22 Javascript
使用jQuery中的wrap()函数操作HTML元素的教程
2016/05/24 Javascript
浅谈js图片前端预览之filereader和window.URL.createObjectURL
2016/06/30 Javascript
如何使用Vuex+Vue.js构建单页应用
2016/10/27 Javascript
Jquery通过ajax请求NodeJS返回json数据实例
2016/11/08 NodeJs
详解如何在NodeJS项目中优雅的使用ES6
2017/04/22 NodeJs
JS实现匀速与减速缓慢运动的动画效果封装示例
2018/08/27 Javascript
微信小程序实现点击效果
2019/06/21 Javascript
Jquery让form表单异步提交代码实现
2019/11/14 jQuery
vue video和vue-video-player实现视频铺满教程
2020/10/30 Javascript
JavaScript实现京东快递单号查询
2020/11/30 Javascript
[03:58]2014DOTA2国际邀请赛 龙宝赛后解密DK获胜之道
2014/07/14 DOTA
python常见的格式化输出小结
2016/12/15 Python
python爬虫_自动获取seebug的poc实例
2017/08/05 Python
使用Python创建简单的HTTP服务器的方法步骤
2019/04/26 Python
树莓派采用socket方式文件传输(python)
2019/06/22 Python
解决Django一个表单对应多个按钮的问题
2019/07/18 Python
Django CBV模型源码运行流程详解
2020/08/17 Python
美国女性运动零售品牌:Lady Foot Locker
2017/05/12 全球购物
行政主管岗位职责
2013/11/18 职场文书
优秀的自荐信要注意哪些
2014/01/03 职场文书
人事专员岗位职责范本
2014/03/04 职场文书
工作岗位说明书模板
2014/05/09 职场文书
工地门卫岗位职责范本
2014/07/01 职场文书
2014年社区教育工作总结
2014/12/02 职场文书
高考作弊检讨书1500字
2015/02/16 职场文书
跑出一片天观后感
2015/06/08 职场文书
身份证丢失证明
2015/06/19 职场文书
学习十八大的感悟
2015/08/11 职场文书
Python基础之tkinter图形化界面学习
2021/04/29 Python
CPU不支持Windows11系统怎么办
2021/11/21 数码科技