값 priva
페이지 정보

본문
값
private int mColor;
//생성자
public ListItem(String title, String desc, int color) {
mTitle = title;
mDesc = desc;
mColor = color;
}
//각 변수들의 getter 메소드
public String getTitle() {
return mTitle;
}
public String getDesc() {
return mDesc;
}
public int getColor() {
return mColor;
}
}
- 이전글미션수리는 매우 중요한 개념입니다. 23.12.16
- 다음글오늘은 우리의 생활을 편 23.12.13
댓글목록
등록된 댓글이 없습니다.