//還有另外兩種構造方法(壹種帶參數,壹種不帶參數)。
//有壹個成員方法printBook()用於輸出數據。設置壹個測試類test並輸出。
公共類圖書{
私有字符串作者;
私有字符串標題;
私有字符串編號;
私人內部銷售;
公共圖書(){}
公共圖書(字符串作者、字符串標題、字符串編號、內部銷售){
this.author = auther
this.title = title
this.num = num
this.sale =銷售;
}
公共void printBook(){
system . out . println(" author:"+author+",title:" + title +",num:" + num +",sale:"+sale);
}
公共字符串getAuthor() {
返回作者;
}
public void setAuthor(字符串作者){
this.author =作者;
}
公共字符串getTitle() {
返回標題;
}
公共void setTitle(字符串標題){
this.title = title
}
公共字符串getNum() {
退貨數量;
}
public void setNum(String num) {
this.num = num
}
public int getSale() {
退貨銷售;
}
public void setSale(int sale) {
this.sale =銷售;
}
}
測試類別:
公共靜態void main(String[] args) {
書b =新書("作者","書名"," 123456798 ",1000);
b . print book();
}