JAVA题:编写一个Book类用于描述图书,要求如下:

 我来答
〖冢】e8
2016-05-11 · TA获得超过139个赞
知道小有建树答主
回答量:229
采纳率:0%
帮助的人:89.7万
展开全部
public class Book {

private String title ;
private String author;
private int sell;

public Book(){

}

public Book(String title,String author,int sell){

this.title=title;
this.author=author;
this.sell=sell;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getAuthor() {
return author;
}
public void setAuthor(String author) {
this.author = author;
}
public int getSell() {
return sell;
}
public void setSell(int sell) {
this.sell = sell;
}

public String toString() {
return "D [title=" + title + ", author=" + author + ", sell=" + sell
+ "]";
}

}
追问
"D [title=" + title + ", author=" + author + ", sell=" + sell
+ "]"
为什么D后面加的是中括号"[ ]',而不是小括号"( )"?
追答
toString()我改一下吧;
public String toString() {
return author+"著"+title+"售出"+sell+"本"
其实无论是中括号或者圆括号()都是无所谓的 因为只是一个字符串而已

这样就会显示 张三著gama语言售出100本 前提是author是张三 title是gama语言 sell是100
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式