Composite pattern1 [Design Pattern] 컴포짓 (Composite) 패턴 컴포짓 (Composite) 패턴그룹 전체와 개별 객체를 동일하게 처리할 수 있는 패턴 (Part-Whole Hierarchy)클라이언트 입장에서는 전체나 부분이나 모두 동일한 컴포넌트로 인식할 수 있는 계층 구조를 만든다.Component ├── Leaf └── Composite ├── Leaf └── Composite ├── Leaf └── Leaf 컴포짓 (Composite) 패턴 Before@AllArgsConstructor@Getterpublic class Item { private String name; private int price;}public class Bag { private List ite.. 2024. 10. 24. 이전 1 다음