05. 프로토타입 패턴
1. 프로토타입 패턴? 기존 인스턴스를 복제하여 새로운 인스턴스를 생성하는 방법 2. 목적 아래 PrototypeClient에서 GithubIssue를 새로 생성할때 처음부터 객체를 만드는것이 아니라 기존에 있는 인스턴스를 복제하여 바뀐부분만 수정하여 만들고자 함. public class GithubIssue { private final GithubRepository githubRepository; private Integer id; private String title; public GithubIssue(GithubRepository githubRepository) { this.githubRepository = githubRepository; } public Integer getId() { return..
디자인 패턴
2022. 2. 10. 16:58