appendBook( new Book('Around the World in 80 Days') ); $bookshelf->appendBook( new Book('Bible') ); $bookshelf->appendBook( new Book('Cinderella') ); $bookshelf->appendBook( new Book('Daddy-Long-Legs') ); $it = $bookshelf->iterator(); while($it->hasNext()) { $book = $it->next(); echo $book->getName()."\n"; } ?>