我的代码有没有问题
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(); }
正在回答
大致瞄了几眼,你的代码存在很严重的问题,首先,有没有问题,你不会先试着编译运行,然后试着改错吗?这样你提出的问题不是更有针对性么?你带参构造里面,不能这样赋值,而且你为什么要在带参构造里面加上if(price)的判断?你不觉得你这样写下来,你的get和set方法根本就没有调用吗? 我不是老师,不过我建议你还是多看几遍视频,然后再看一下其他同学提出的问题,他们的代码都是怎么写的。
- 参与学习 人
- 提交作业 7317 份
- 解答问题 14452 个
想要入门学编程?多年一直活跃在编程语言排行版前列的Java是一个很好的选择。本路径将从Java基础语法、面向对象、常用工具类三部分,为你开启软件开发的大门!
了解课程
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星