亚洲精品久久久中文字幕-亚洲精品久久片久久-亚洲精品久久青草-亚洲精品久久婷婷爱久久婷婷-亚洲精品久久午夜香蕉

您的位置:首頁(yè)技術(shù)文章
文章詳情頁(yè)

常用設(shè)計(jì)模式之迭代器模式及其PHP實(shí)現(xiàn)(Yii框架)

瀏覽:3日期:2022-09-13 09:01:45

迭代器模式是一種行為型模式,它是一種最簡(jiǎn)單也最常見(jiàn)的設(shè)計(jì)模式。它可以讓使用者透過(guò)特定的接口巡訪容器中的每一個(gè)元素而不用了解底層的實(shí)際操作。

適用性在希望利用語(yǔ)言本身的遍歷函數(shù)便利自定義結(jié)構(gòu)時(shí),例如PHP中的foreach函數(shù)類(lèi)圖

常用設(shè)計(jì)模式之迭代器模式及其PHP實(shí)現(xiàn)(Yii框架)

PHP實(shí)例

<?phpclass 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框架中的實(shí)現(xiàn):

在Yii框架中的我們可以看到其迭代器的實(shí)現(xiàn),在collections目錄下的CMapIterator.php文件中,其實(shí)現(xiàn)如下:

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 />’;}

這與之前的簡(jiǎn)單實(shí)現(xiàn)相比,其位置的變化是通過(guò)控制key來(lái)實(shí)現(xiàn)的,這種實(shí)現(xiàn)的作用是為了避免false作為數(shù)組值時(shí)無(wú)法迭代。

標(biāo)簽: PHP
相關(guān)文章:
主站蜘蛛池模板: 91私密视频 | 一区二区三区网站在线免费线观看 | 黄色毛片电影黄色毛片 | 一级香蕉视频在线观看 | 亚洲九九香蕉 | 8x永久免费观看成人影院 | 亚洲福利在线视频 | 免费观看性生交大片人 | 国产成人精品视频免费大全 | 国产成人免费网站 | 国产精品一区二区综合 | 久久2| 国产一区二区三区不卡观 | 九九在线观看免费视频 | 亚洲精品第一区二区在线 | 久久久国产这里有的是精品 | 国产在线观看网址在线视频 | 国产色网站 | 国产三级在线视频观看 | 直接黄91麻豆网站 | 日韩三级小视频 | 日韩视频中文字幕专区 | 亚洲黄页| 黄网站在线观看高清免费 | 成a人片在线观看 | 欧美污污网站 | 久久视频精品线视频在线网站 | 欧美视频一区二区三区 | 亚洲成人精品 | 婷婷久久综合网 | 亚洲精品自拍愉拍第二页 | 9966久久精品免费看国产 | 国产uv1区二区三区 国产va免费精品观看 | 国产在线观看免费 | 日本特黄特色大片免费视频 | 黑人巨大进入美女深处的视频 | 特级黄色生活片 | 久久久久国产精品美女毛片 | 性感视频网站 | 一区 在线播放 | 久久成人影视 |