day3 빼먹음 1. iterator 패턴 1. public class IteratorTest { public static void main(String[] args) { System.out.println("iterator 패턴"); BookShelf bookShelf = new BookShelf(4); bookShelf.appendBook(new Book("Around the World in 80")); bookShelf.appendBook(new Book("Bible")); bookShelf.appendBook(new Book("Cinderella")); bookShelf.appendBook(new Book("Daddy-Long-Legs")); Iterator it = bookShelf.iterato..