IT/개체지향
OOP 설계 배운점 - 1
1. 생성자를 잘 구성하자 public Post( UUID id, String title, String body, UUID authorId ) { OffsetDateTime now = OffsetDateTime.now(); this.id = id; this.title = title; this.body = body; this.authorId = authorId; this.createdDateTime = now; this.modifiedDateTime = now; this.tags = new HashSet(DEFAULT_MEMORY_ALLOCATION); this.comments = new ArrayList(DEFAULT_MEMORY_ALLOCATION); this.userReactions = new Enu..
2022. 10. 24. 22:19
최근댓글