WON.dev
chapter02 : book 본문
package org.joonzis.ex;
public class Ex02_Book {
// 필드
String title, writer;
int price, salesVolume;
boolean isBestSeller;
public Ex02_Book() {}
public Ex02_Book(String title, int price) {
this(title, "작자미상", price);
}
public Ex02_Book(String title, String writer, int price) {
this.title = title;
this.writer = writer;
this.price = price;
}
}
'JAVA > chapter09_this' 카테고리의 다른 글
chapter01 : rect / rectmain (0) | 2023.05.26 |
---|