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 相关文章推荐
简体中文转换为繁体中文的PHP函数
Oct 09 PHP
ThinkPHP采用模块和操作分析
Apr 18 PHP
如何使用php判断服务器是否是HTTPS连接
Jul 05 PHP
win7系统配置php+Apache+mysql环境的方法
Aug 21 PHP
SSO单点登录的PHP实现方法(Laravel框架)
Mar 23 PHP
php读取torrent种子文件内容的方法(测试可用)
May 03 PHP
微信支付开发发货通知实例
Jul 12 PHP
php实现连接access数据库并转txt写入的方法
Feb 08 PHP
Yii 2.0如何使用页面缓存方法示例
May 23 PHP
PHP进阶学习之Geo的地图定位算法详解
Jun 19 PHP
在 Laravel 项目中使用 webpack-encore的方法
Jul 21 PHP
PHP中strval()函数实例用法
Jun 07 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中stream(流)的用法
2014/03/25 PHP
php发送http请求的常用方法分析
2016/11/08 PHP
[JS]点出统计器
2020/10/11 Javascript
学习JavaScript设计模式之迭代器模式
2016/01/19 Javascript
实例讲解JavaScript中call、apply、bind方法的异同
2016/09/13 Javascript
js实现文字选中分享功能
2017/01/25 Javascript
详解微信小程序 template添加绑定事件
2017/06/23 Javascript
jQuery实现新闻播报滚动及淡入淡出效果示例
2018/03/23 jQuery
vue.js+element-ui动态配置菜单的实例
2018/09/07 Javascript
一次Webpack配置文件的分离实战记录
2018/11/30 Javascript
微信小程序使用GoEasy实现websocket实时通讯
2020/05/19 Javascript
Python基础教程之正则表达式基本语法以及re模块
2016/03/25 Python
对python 通过ssh访问数据库的实例详解
2019/02/19 Python
为什么你还不懂得怎么使用Python协程
2019/05/13 Python
python+numpy实现的基本矩阵操作示例
2019/07/19 Python
django drf框架中的user验证以及JWT拓展的介绍
2019/08/12 Python
关于PyTorch 自动求导机制详解
2019/08/18 Python
解决python有时候import不了当前的包问题
2019/08/28 Python
PyCharm如何导入python项目的方法
2020/02/06 Python
详解pycharm配置python解释器的问题
2020/10/15 Python
css3实现背景颜色渐变让图片不再是唯一的实现方式
2012/12/18 HTML / CSS
css3实现二维码扫描特效的示例
2020/10/29 HTML / CSS
canvas像素点操作之视频绿幕抠图
2018/09/11 HTML / CSS
AmazeUI图片轮播效果的示例代码
2020/08/20 HTML / CSS
乌克兰电子和家用电器商店:Foxtrot
2019/07/23 全球购物
EJB timer的种类
2014/10/28 面试题
什么是lambda函数
2013/09/17 面试题
计算机网络毕业生自荐信
2013/10/01 职场文书
中学实习教师自我鉴定
2013/12/12 职场文书
促销活动策划方案
2014/01/12 职场文书
取保候审保证书
2014/04/30 职场文书
初中学校对照检查材料
2014/08/19 职场文书
井冈山红色之旅感想
2014/10/07 职场文书
2015年监理个人工作总结
2015/05/23 职场文书
领导离职感言
2015/08/03 职场文书
宾馆客房管理制度
2015/08/06 职场文书