Replies: 3 comments
-
어떻게... 얼려...?public void setServingSize(int val) {
checkFreezing(); // 프리징 여부 체크
servingSize = val;
}
private void checkFreezing() {
if (frozen) {
throw new IllegalStateException("객체가 얼었다!");
}
}
|
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Beta Was this translation helpful? Give feedback.
0 replies
-
언제? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
객체 생성 패턴
점층적 생성자 패턴
여러 개의 선택적 매개변수가 필요할 때,
순차적으로
매개변수를 추가한 생성자를 만드는 방식공통적으로
가진 제약 사항)자바빈즈(JavaBeans) 패턴
매개변수가 없는 생성자로 객체를 만들고, 필요하면
setter로
매개변수의 값을 설정하는 방식빌더(Builder) 패턴
빌더
를 사용해서 여러 매개변수를 설정하는 방식Beta Was this translation helpful? Give feedback.
All reactions