JAVA/chapter09_this

chapter02 : book

GAWON 2023. 5. 26. 18:09
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;
	}
	
}