您好,登錄后才能下訂單哦!
如何在PHP中利用SPL實現一個迭代器模式?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
//部門類 class Department{ private $_name; private $_employees; function __construct($name){ $this->_name = $name; $this->employees = array(); } function addEmployee(Employee $e){ $this->_employees[] = $e; echo "員工{$e->getName()}被分配到{$this->_name}中去"; } } //員工類 class Employee{ private $_name; function __construct($name){ $this->_name = $name; } function getName(){ return $this->_name; } } //應用: $lsgo = new Department('LSGO實驗室'); $e1 = new Employee("小錦"); $e2 = new Employee("小豬"); $lsgo->addEmployee($e1); $lsgo->addEmployee($e2);
好了,現在LSGO實驗室已經有兩個部員了,現在我想把全部的部員都列出來,就是用循環來獲取部門的每個員工的詳情。
在這里我們用PHP中的SPL標準庫提供的迭代器來實現。
《大話設計模式》中如是說:
迭代器模式:迭代器模式是遍歷集合的成熟模式,迭代器模式的關鍵是將遍歷集合的任務交給一個叫做迭代器的對象,它的工作時遍歷并選擇序列中的對象,而客戶端程序員不必知道或關心該集合序列底層的結構。
迭代器模式的作用簡而言之:是使所有復雜數據結構的組件都可以使用循環來訪問
假如我們的對象要實現迭代,我們使這個類實現 Iterator(SPL標準庫提供),這是一個迭代器接口,為了實現該接口,我們必須實現以下方法:
current()
,該函數返回當前數據項key()
,該函數返回當前數據項的鍵或者該項在列表中的位置next()
,該函數使數據項的鍵或者位置前移rewind()
,該函數重置鍵值或者位置valid()
,該函數返回 bool 值,表明當前鍵或者位置是否指向數據值
實現了 Iterator 接口和規定的方法后,PHP就能夠知道該類類型的對象需要迭代。
我們使用這種方式重構 Department 類:
class Department implements Iterator { private $_name; private $_employees; private $_position;//標志當前數組指針位置 function __construct($name) { $this->_name = $name; $this->employees = array(); $this->_position = 0; } function addEmployee(Employee $e) { $this->_employees[] = $e; echo "員工{$e->getName()}被分配到{$this->_name}中去"; } //實現 Iterator 接口要求實現的方法 function current() { return $this->_employees[$this->_position]; } function key() { return $this->_position; } function next() { $this->_position++; } function rewind() { $this->_position = 0; } function valid() { return isset($this->_employees[$this->_position]); } } //Employee 類同前 //應用: $lsgo = new Department('LSGO實驗室'); $e1 = new Employee("小錦"); $e2 = new Employee("小豬"); $lsgo->addEmployee($e1); $lsgo->addEmployee($e2); echo "LSGO實驗室部員情況:"; //這里其實遍歷的$_employee foreach($lsgo as $val){ echo "部員{$val->getName()}"; }
附加:
假如現在我們想要知道該部門有幾個員工,如果是數組的話,一個 count()
函數就 ok 了,那么我們能不能像上面那樣把對象當作數組來處理?SPL標準庫中提供了 Countable 接口供我們使用:
class Department implements Iterator,Countable{ //前面同上 //實現Countable中要求實現的方法 function count(){ return count($this->_employees); } } //應用: echo "員工數量:"; echo count($lsgo);
關于如何在PHP中利用SPL實現一個迭代器模式問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。