
IteratorAggregate 인터페이스는 컬렉션을 반복 가능한 객체로 변환할 수 있도록 하는 인터페이스입니다. getIterator 메서드는 이 인터페이스를 구현한 클래스에서 Iterator 객체를 반환하는 데 사용됩니다.
getIterator 메서드는 반복 가능한 컬렉션을 Iterator 객체로 변환하는 역할을 합니다. 이 메서드는 Iterator 인터페이스를 구현한 객체를 반환하며, 이 객체는 컬렉션의 요소를 반복적으로 접근할 수 있도록 합니다.
IteratorAggregate::getIterator 메서드의 사용법은 다음과 같습니다.
1. IteratorAggregate 인터페이스를 구현한 클래스를 생성합니다.
2. getIterator 메서드를 오버라이딩하여 Iterator 객체를 반환합니다.
3. Iterator 객체를 사용하여 컬렉션의 요소를 반복적으로 접근합니다.
예를 들어, ArrayIterator 클래스를 생성하여 IteratorAggregate 인터페이스를 구현하는 방법은 다음과 같습니다.
#hostingforum.kr
php
class ArrayIterator implements IteratorAggregate {
private $array;
public function __construct(array $array) {
$this->array = $array;
}
public function getIterator() {
return new ArrayIteratorIterator($this->array);
}
}
class ArrayIteratorIterator implements Iterator {
private $array;
private $index = 0;
public function __construct(array $array) {
$this->array = $array;
}
public function rewind() {
$this->index = 0;
}
public function current() {
return $this->array[$this->index];
}
public function key() {
return $this->index;
}
public function next() {
$this->index++;
}
public function valid() {
return $this->index < count($this->array);
}
}
$array = [1, 2, 3, 4, 5];
$iterator = new ArrayIterator($array);
foreach ($iterator as $value) {
echo $value . "n";
}
이 예제에서는 ArrayIterator 클래스를 생성하여 IteratorAggregate 인터페이스를 구현하고, getIterator 메서드를 오버라이딩하여 Iterator 객체를 반환합니다. ArrayIteratorIterator 클래스를 생성하여 Iterator 인터페이스를 구현하고, Iterator 객체를 사용하여 컬렉션의 요소를 반복적으로 접근합니다.
2025-04-03 18:36