本文实例讲述了php预定义接口——iterator用法。分享给大家供大家参考,具体如下:
可在内部迭代自己的外部迭代器或类的接口。
iterator extends traversable { /* 方法 */ abstract public current ( void ) : mixed abstract public key ( void ) : scalar abstract public next ( void ) : void abstract public rewind ( void ) : void abstract public valid ( void ) : bool}
<?phpclass myiterator implements iterator{ private $position = 0; private $array = array( 'first_element', 'cond_element', 'last_element', ); /** * 重置键的位置 */ public function rewind(): void { var_dump(__method__); $this->position = 0; } /** * 返回当前元素 */ public function current() { var_dump(__method__); return $this->array[$this->position]; } /** * 返回当前元素的键 * @return int */ public function key(): int { var_dump(__method__); retur心乱如麻造句n $this->position; } /** * 将键移动到下一位 */ public function next(): void { var_dump(__method__); ++$this->position; } /** * 判断键所在位置的元素是否存在 * @return bool */ public function valid(): bool { var_dump(__method__); return ist($this->array[$this->position]); }2110工程}$it = new myiterator;foreach ($it as $key => $value) { var_dump($key, $value); echo "\n";}
输出结果:
string ‘myiterator::rewind’ (length=18)
string ‘myiterator::valid’ (length=17)
string ‘myiterator::current’ (length=19)
string ‘myiterator::key’ (length=15)
int 0
string ‘first_element’ (length=13)
string ‘myiterator::next’ (length=16)
string 思想作风8216;myiterator::valid’ (length=17)
string ‘myiterator::current’ (length=19)
string ‘myiterato命运交响r::key’ (length=15)
int 1
string ‘cond_element’ (length=14)
string &什么是矢量图#8216;myiterator::next’ (length=16)
string ‘myiterator::valid’ (length=17)
string ‘myiterator::current’ (length=19)
string ‘myiterator::key’ (length=15)
int 2
string ‘last_element’ (length=12)
string ‘myiterator::next’ (length=16)
string ‘myiterator::valid’ (length=17)
由结果可知,当类实现了iterator接口,实现改类实例数据集的时候首先会将数据集的键重置,然后逐步后移,每次都会进行然后返回当前元素以及当前键。
本文发布于:2023-04-08 17:40:56,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/190af83d28fc6d60fe7eb0e405520c54.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:PHP预定义接口——Iterator用法示例.doc
本文 PDF 下载地址:PHP预定义接口——Iterator用法示例.pdf
留言与评论(共有 0 条评论) |