Notice
Recent Posts
Recent Comments
Link
목록기술 서적/디자인 패턴 (1)
개발자는 기록이 답이다
플라이웨이트 패턴
플라이웨이트 : 자주 변경되는 값과 아닌 값을 분리해서 재사용하는 방식이다. 아래 내용처러 문제에 대해 정의한 클래스가 있다고 가정해보자. public class Character { private char value; private String color; private String fontFamily; private int fontSize; public Character(char value, String color, String fontFamily, int fontSize) { this.value = value; this.color = color; this.fontFamily = fontFamily; this.fontSize = fontSize; } } 위의 코드는 너무 무겁다. 자주 변경되지 않은 ..
기술 서적/디자인 패턴
2023. 12. 26. 19:45