gpt4 book ai didi

PHP预定义接口——Iterator用法示例

转载 作者:qq735679552 更新时间:2022-09-29 22:32:09 24 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章PHP预定义接口——Iterator用法示例由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

本文实例讲述了PHP预定义接口——Iterator用法。分享给大家供大家参考,具体如下:

Iterator(迭代器)接口

可在内部迭代自己的外部迭代器或类的接口.

接口摘要

?
1
2
3
4
5
6
7
8
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
}

例:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?php
class myIterator implements Iterator
{
   private $position = 0;
   private $array = array (
     'first_element' ,
     'second_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__ );
     return $this ->position;
   }
 
   /**
    * 将键移动到下一位
    */
   public function next(): void
   {
     var_dump( __METHOD__ );
     ++ $this ->position;
   }
 
   /**
    * 判断键所在位置的元素是否存在
    * @return bool
    */
   public function valid(): bool
   {
     var_dump( __METHOD__ );
     return isset( $this -> array [ $this ->position]);
   }
}
 
$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 'myIterator::valid' (length=17) string 'myIterator::current' (length=19) string 'myIterator::key' (length=15) int 1 string 'second_element' (length=14) string '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接口,实现改类实例数据集的时候首先会将数据集的键重置,然后逐步后移,每次都会进行然后返回当前元素以及当前键.

希望本文所述对大家PHP程序设计有所帮助.

原文链接:https://blog.csdn.net/Wenco1/article/details/97154611 。

最后此篇关于PHP预定义接口——Iterator用法示例的文章就讲到这里了,如果你想了解更多关于PHP预定义接口——Iterator用法示例的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com