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 相关文章推荐
vs中通过剪切板循环来循环粘贴不同内容
Apr 30 PHP
PHP中文分词的简单实现代码分享
Jul 17 PHP
php中禁止单个IP与ip段访问的代码小结
Jul 04 PHP
详解PHP内置访问资源的超时时间 time_out file_get_contents read_file
Jun 03 PHP
phpword插件导出word文件时中文乱码问题处理方案
Aug 19 PHP
php连接oracle数据库及查询数据的方法
Dec 29 PHP
php实现有序数组打印或排序的方法【附Python、C及Go语言实现代码】
Nov 10 PHP
php 判断过去离现在几年的函数(实例代码)
Nov 15 PHP
php使用json_decode后数字对象转换成了科学计数法的解决方法
Feb 20 PHP
php 判断页面或图片是否经过gzip压缩的方法
Apr 05 PHP
php实现获取农历(阴历)、节日、节气的类与用法示例
Nov 20 PHP
Laravel定时任务的每秒执行代码
Oct 22 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
CI(CodeIgniter)模型用法实例分析
2016/01/20 PHP
php获取flash尺寸详细数据的方法
2016/11/12 PHP
xml 封装与解析(javascript和C#中)
2009/07/26 Javascript
jQuery jqgrid 对含特殊字符json 数据的 Java 处理方法
2011/01/01 Javascript
javascript自动给文本url地址增加链接的方法分享
2014/01/20 Javascript
jquery 绑定回车动作扑捉回车键触发的事件
2014/03/26 Javascript
判断复选框是否被选中的两种方法
2014/06/04 Javascript
js/jquery判断浏览器类型的方法小结
2015/05/12 Javascript
jQuery代码实现发展历程时间轴特效
2015/07/30 Javascript
JavaScript测试工具之Karma-Jasmine的安装和使用详解
2015/12/03 Javascript
浅谈JavaScript前端开发的MVC结构与MVVM结构
2016/06/03 Javascript
JS脚本加载后执行相应回调函数的操作方法
2018/02/28 Javascript
es6新特性之 class 基本用法解析
2018/05/05 Javascript
微信小程序使用npm支持踩坑
2018/11/07 Javascript
在Angular项目使用socket.io实现通信的方法
2021/01/05 Javascript
[09:37]DOTA2卡尔工作室 英雄介绍圣堂刺客篇
2013/06/13 DOTA
Tensorflow实现卷积神经网络用于人脸关键点识别
2018/03/05 Python
python3下使用cv2.imwrite存储带有中文路径图片的方法
2018/05/10 Python
Python3数字求和的实例
2019/02/19 Python
python3中替换python2中cmp函数的实现
2019/08/20 Python
Python高级特性 切片 迭代解析
2019/08/23 Python
pygame实现五子棋游戏
2019/10/29 Python
python实现3D地图可视化
2020/03/25 Python
Python操作MySQL数据库的示例代码
2020/07/13 Python
详解html5 postMessage解决跨域通信的问题
2018/08/17 HTML / CSS
Html5原生拖拽相关事件简介以及基础实现
2020/11/19 HTML / CSS
Baracuta官方网站:Harrington夹克,G9,G4,G10等
2018/03/06 全球购物
Stubhub英国:购买体育、演唱会和剧院门票
2018/06/10 全球购物
幼儿园国庆节活动方案
2014/02/01 职场文书
简历的自我评价范文
2014/02/04 职场文书
经营目标管理责任书
2014/07/25 职场文书
领导班子四风问题个人对照检查材料
2014/10/04 职场文书
酒店收银员岗位职责
2015/04/07 职场文书
2019自荐信该如何写呢?
2019/07/05 职场文书
Python MNIST手写体识别详解与试练
2021/11/07 Python
SQL Server使用CROSS APPLY与OUTER APPLY实现连接查询
2022/05/25 SQL Server