您好,欢迎来到三六零分类信息网!老站,搜索引擎当天收录,欢迎发信息

迭代器模式及其php实现(Yii框架)

2026/1/1 11:30:44发布13次查看
迭代器模式是一种行为型模式,它是一种最简单也最常见的设计模式。它可以让使用者透过特定的接口巡访容器中的每一个元素而不用了解底层的实际操作。
适用性
在希望利用语言本身的遍历函数便利自定义结构时,例如php中的foreach函数
类图
php实例
<?php 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 />'; } ?>
在yii框架中的实现:
在yii框架中的我们可以看到其迭代器的实现,在collections目录下的cmapiterator.php文件中,其实现如下:
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 />'; }
这与之前的简单实现相比,其位置的变化是通过控制key来实现的,这种实现的作用是为了避免false作为数组值时无法迭代。
该用户其它信息

VIP推荐

免费发布信息,免费发布B2B信息网站平台 - 三六零分类信息网 沪ICP备09012988号-2
企业名录 Product