我的代码有没有问题

我的代码有没有问题

public class Book {

  //私有属性:书名、作者、出版社、价格

     private String book;

     private String author;

     private String press;

     private double price;

  //通过构造方法实现属性赋值

     public Book() {

// TODO 自动生成的构造函数存根

}

     public Book(String book,String author,String press,double price) {

    this.book=book;

    this.author=author;

    this.press=press;

    if(price>=10) {

this.price = price;

}else {

this.price=10;

System.out.println("图书价格最低10元");

}

     }

    /*通过公有的get/set方法实现属性的访问,其中:

    1、限定图书价格必须大于10,如果无效需进行提示,并强制赋值为10

    2、限定作者、书名均为只读属性

    */

public String getBook() {

return book;

}

public String getAuthor() {

return author;

}

public String getPress() {

return press;

}

public void setPress(String press) {

this.press = press;

}

public double getPrice() {

return price;

}

public void setPrice(double price) {

if(price>=10) {

this.price = price;

}else {

this.price=10;

System.out.println("图书价格最低10元");

}

}

     

  //信息介绍方法,描述图书所有信息

public void intro() {

System.out.println("书名:"+book);

System.out.println("作者:"+author);

System.out.println("出版社:"+press);

System.out.println("价格:"+price);

}


}

public static void main(String[] args) {
	      //实例化对象,调用相关方法实现运行效果
	   Book book1=new Book("红楼梦","曹雪芹","人民文学出版社",11);
	   book1.intro();
	   System.out.println("==============================");
	   Book book2=new Book("小李飞刀","古龙","中国长安出版社",55.5);
	   book2.intro();
	 }


正在回答

登陆购买课程后可参与讨论,去登陆

1回答

大致瞄了几眼,你的代码存在很严重的问题,首先,有没有问题,你不会先试着编译运行,然后试着改错吗?这样你提出的问题不是更有针对性么?你带参构造里面,不能这样赋值,而且你为什么要在带参构造里面加上if(price)的判断?你不觉得你这样写下来,你的get和set方法根本就没有调用吗? 我不是老师,不过我建议你还是多看几遍视频,然后再看一下其他同学提出的问题,他们的代码都是怎么写的。

  • 慕仰9524692 提问者 #1
    修改了一下,你再看看我提的新问题
    2018-08-13 14:48:44
问题已解决,确定采纳
还有疑问,暂不采纳

恭喜解决一个难题,获得1积分~

来为老师/同学的回答评分吧

0 星
请稍等 ...
意见反馈 帮助中心 APP下载
官方微信

在线咨询

领取优惠

免费试听

领取大纲

扫描二维码,添加
你的专属老师