# 01/리팩토링 썸네일형 리스트형 [리팩토링] CHAPTER 01 - 맛보기 예제 ● Movie 클래스 - 간단한 비디오 데이터 클래스 public class Movie { public static final int CHILDRENS = 2; public static final int REGULAR = 0; public static final int NEW_RELEASE = 1; private String _title; private int _priceCode; public Movie (String title, int priceCode) { _title = title; _priceCode = priceCode; } public int getPriceCode() { return _priceCode; } public void setPriceCode(int arg) { _priceCode .. 이전 1 다음