CStackIterator
优质
小牛编辑
128浏览
2023-12-01
所有包 | 方法
CStackIterator为CStack实现一个迭代器。
它允许CStack返回一个新的迭代器来遍历栈中的项目。
源码: framework/collections/CStackIterator.php#40 (显示)
源码: framework/collections/CStackIterator.php#71 (显示)
源码: framework/collections/CStackIterator.php#61 (显示)
源码: framework/collections/CStackIterator.php#80 (显示)
源码: framework/collections/CStackIterator.php#51 (显示)
源码: framework/collections/CStackIterator.php#90 (显示)
包 | system.collections |
---|---|
继承 | class CStackIterator |
实现 | Iterator, Traversable |
源自 | 1.0 |
版本 | $Id: CStackIterator.php 2799 2011-01-01 19:31:13Z qiang.xue $ |
源码 | framework/collections/CStackIterator.php |
它允许CStack返回一个新的迭代器来遍历栈中的项目。
公共方法
隐藏继承方法
方法 | 描述 | 定义在 |
---|---|---|
__construct() | 构造方法 | CStackIterator |
current() | 返回数组当前项目。 | CStackIterator |
key() | 返回数组当前项目的键名。 | CStackIterator |
next() | 移动当前索引到下一个项目的位置。 | CStackIterator |
rewind() | 重置当前数组索引位置。 | CStackIterator |
valid() | 返回值说明当前位置是否存在一个项目。 | CStackIterator |
方法详细
__construct() 方法public void __construct(array &$data) | ||
$data | array | 要遍历的数据 |
publicfunction__construct(&$data)
{
$this->_d=&$data;
$this->_i=0;
$this->_c=count($this->_d);
}
构造方法
current() 方法public mixed current() | ||
{return} | mixed | 返回数组当前项目。 |
publicfunctioncurrent()
{
return$this->_d[$this->_i];
}
返回数组当前项目。 此方法为接口Iterator强制要求实现。
key() 方法public integer key() | ||
{return} | integer | 返回数组当前项目的键名。 |
publicfunctionkey()
{
return$this->_i;
}
返回数组当前项目的键名。 此方法为接口Iterator强制要求实现。
next() 方法public void next() |
publicfunctionnext()
{
$this->_i++;
}
移动当前索引到下一个项目的位置。 此方法为接口Iterator强制要求实现。
rewind() 方法public void rewind() |
publicfunctionrewind()
{
$this->_i=0;
}
重置当前数组索引位置。 此方法为接口Iterator强制要求实现。
valid() 方法public boolean valid() | ||
{return} | boolean |
publicfunctionvalid()
{
return$this->_i<$this->_c;
}
返回值说明当前位置是否存在一个项目。 此方法为接口Iterator强制要求实现。