PHP设计模式-迭代器

适用性

  • 遍历对象内部的属性,无需对外暴露内部的构成
  • 下面我们来实现一个迭代器访问学校所有的老师

    代码示例

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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196

namespace iterator;

/**
* 学校接口
*/
interface School
{
/**
* 获取迭代器
*
* @return mixed
*/
public function getIterator();
}

/**
* 迭代器接口
*/
interface Iterator
{
/**
* 是否还有下一个
*
* @return boolean
*/
public function hasNext();

/**
* 下一个
*
* @return object
*/
public function next();

/**
* 当前
*
* @return mixed
*/
public function current();

/**
* 当前索引
*
* @return mixed
*/
public function index();
}

/**
* 实验小学实体
*/
class SchoolExperimental implements School
{
/**
* 老师集合
* @var
*/
private $_teachers = [];

/**
* 魔法方法
*
* @param string $name 属性名称
* @return mixed
*/
public function __get($name='')
{
$name = '_' . $name;
return $this->$name;
}

/**
* 添加老师
* @param string $name
*/
public function addTeacher($name='')
{
$this->_teachers[] = $name;
}

/**
* 获取教师迭代器
*
* @return mixed
*/
public function getIterator()
{
return new TeacherIterator($this);
}
}

/**
* 老师迭代实体
*/
class TeacherIterator implements Iterator
{

/**
* 索引值
* @var integer
*/
private $_index = 0;

/**
* 要迭代的对象
* @var object
*/
private $_teachers;

/**
* 构造函数
*
* @param School $school
*/
public function __construct(School $school)
{
$this->_teachers = $school->teachers;
}

/**
* 是否还有下一个
*
* @return boolean
*/
public function hasNext()
{
if ($this->_index < count($this->_teachers)) {
return true;
}
return false;
}

/**
* 下一个
*
* @return object
*/
public function next()
{
if (!$this->hasNext()) {
echo NULL;
return;
}
$index = $this->_index + 1;
echo $this->_teachers[$index];
}

/**
* 当前
*
* @return mixed
*/
public function current()
{
if (!isset($this->_teachers[$this->_index])) {
echo NULL;
return;
}
$current = $this->_teachers[$this->_index];
$this->_index += 1;
echo $current . "\n";
}

/**
* 当前索引
*
* @return integer
*/
public function index()
{
echo $this->_index;
}
}

try {
// 初始化一个实验小学
$experimental = new SchoolExperimental();
// 添加老师
$experimental->addTeacher('Griffin');
$experimental->addTeacher('Curry');
$experimental->addTeacher('Mc');
$experimental->addTeacher('Kobe');
$experimental->addTeacher('Rose');
$experimental->addTeacher('Kd');
// 获取教师迭代器
$iterator = $experimental->getIterator();
// 打印所有老师
do {
$iterator->current();
} while ($iterator->hasNext());

} catch (\Exception $e) {
echo 'error:' . $e->getMessage();
}