迭代器模式

迭代器模式 (Iterator),又叫做游标(Cursor)模式。提供一种方法访问一个容器(Container)对象中各个元素,而又不需暴露该对象的内部细节。

当你需要访问一个聚合对象,而且不管这些对象是什么都需要遍历的时候,就应该考虑使用迭代器模式。另外,当需要对聚集有多种方式遍历时,可以考虑去使用迭代器模式。迭代器模式为遍历不同的聚集结构提供如开始、下一个、是否结束、当前哪一项等统一的接口。

php标准库(SPL)中提供了迭代器接口 Iterator,要实现迭代器模式,实现该接口即可。

介绍

意图:提供一种方法顺序访问一个聚合对象中各个元素, 而又无须暴露该对象的内部表示。

主要解决:不同的方式来遍历整个整合对象。

何时使用:遍历一个聚合对象。

如何解决:把在元素之间游走的责任交给迭代器,而不是聚合对象。

关键代码:定义接口:hasNext, next。

优点: 1、它支持以不同的方式遍历一个聚合对象。 2、迭代器简化了聚合类。 3、在同一个聚合上可以有多个遍历。 4、在迭代器模式中,增加新的聚合类和迭代器类都很方便,无须修改原有代码。

缺点:由于迭代器模式将存储数据和遍历数据的职责分离,增加新的聚合类需要对应增加新的迭代器类,类的个数成对增加,这在一定程度上增加了系统的复杂性。

使用场景: 1、访问一个聚合对象的内容而无须暴露它的内部表示。 2、需要为聚合对象提供多种遍历方式。 3、为遍历不同的聚合结构提供一个统一的接口。

注意事项:迭代器模式就是分离了集合对象的遍历行为,抽象出一个迭代器类来负责,这样既可以做到不暴露集合的内部结构,又可让外部代码透明地访问集合内部的数据。

class sample implements Iterator {
private $_items ; public function __construct(&$data) {
$this->_items = $data;
}
public function current() {
return current($this->_items);
} public function next() {
next($this->_items);
} public function key() {
return key($this->_items);
} public function rewind() {
reset($this->_items);
} public function valid() {
return ($this->current() !== FALSE);
}
} // client
$data = array(1, 2, 3, 4, 5);
$sa = new sample($data);
foreach ($sa AS $key => $row) {
echo $key, ' ', $row, '<br />';
}
/* 输出:
0 1
1 2
2 3
3 4
4 5 */ //Yii FrameWork Demo
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 />';
} /* 输出:
11
22
33 */

  23种模式总览 : https://www.cnblogs.com/houss/p/11121584.html

最新文章

  1. Solr_全文检索引擎系统
  2. es-redis
  3. Spring IOC/DI和AOP原理
  4. Android_SQLite之创建数据库
  5. MFC文件操作
  6. linux eclipse3.6.1 maven安装
  7. UVa12633 Super Rooks on Chessboard(容斥 + FFT)
  8. LCD framebuffer驱动设计文档
  9. 图解linux下top命令的使用
  10. Java高效读取大文件(转)
  11. Java 4
  12. 第13章 Swing程序设计----常用事件监听器
  13. thymeleaf中的日期格式化
  14. 译:9.使用Redis进行消息传递
  15. js基础知识--变量类型和变量计算
  16. JavaScript中对象与函数的某些事[JavaScript语言精粹-N1]
  17. Frog and Portal(思维好题)
  18. # 2018-2019-2 20165210《网络攻防技术》Exp1 PC平台逆向破解(BOF实验)
  19. 详尽全面的matlab绘图教程
  20. npm 安装参数中的 --save-dev 是什么意思

热门文章

  1. Jackson 的 基本用法
  2. 虚拟机与Docker
  3. centos安装php7.2
  4. 更新docker镜像
  5. SQL 在数据库中查找拥有此列名的所有表
  6. 再见收费的Navicat!操作所有数据库就靠它了!
  7. MindSpore多元自动微分
  8. CVE-2021-33739 EOP漏洞分析
  9. suse 12 二进制部署 Kubernetets 1.19.7 - 第12章 - 部署dashboard插件
  10. Java不支持协程?那是你不知道Quasar!