iterator pattern1 [Design Pattern] 이터레이터(Iterator) 패턴 이터레이터(Iterator) 패턴집합 객체 내부 구조를 노출시키지 않고 순회 하는 방법을 제공하는 패턴집합 객체를 순회하는 클라이언트 코드를 변경하지 않고 다양한 순회 방법을 제공할 수 있다. 이터레이터(Iterator) 패턴 beforePost@Getterpublic class Post { private String title; private final LocalDateTime createdDateTime; public Post(String title) { this.title = title; this.createdDateTime = LocalDateTime.now(); }} Boardpublic class Board { List posts = new .. 2024. 10. 31. 이전 1 다음