请问这个要是怎么改
第一页:
public class Book {
//私有属性:书名、作者、出版社、价格
private String name; //私有类 书名
private String auther;//私有类 作者
private String press; //私有类 出版社
private double price; //私有类 价格
public Book(){ //无参构造
}
public Book(String name,String auther,String press,String price){ //有参构造
}
public String getPress() { //出版社 get/set方法
return press;
}
public void setPress(String press) { //出版社set方法
this.press = press;
}
public double getPrice() { //价格get方法
return price;
}
public void setPrice(double price) { //价格set方法
if(price<=10.0){
System.out.println("输入的信息无效,默认价格为10.0元");
price=10.0;
}else
this.price = price;
}
public String getName() { //书名get方法
return name;
}
public String getAuther() { //作者get方法
return auther;
}
//通过构造方法实现属性赋值
/*通过公有的get/set方法实现属性的访问,其中:
1、限定图书价格必须大于10,如果无效需进行提示,并强制赋值为10
2、限定作者、书名均为只读属性
*/
public void descriptor(){
System.out.println("书名:"+this.name);
System.out.println("作者:"+this.auther);
System.out.println("出版社:"+this.press);
System.out.println("价格:"+this.name);
}
//信息介绍方法,描述图书所有信息
}
第二页:
public class BookTest {
// 测试方法
public static void main(String[] args) {
Book one=new Book();
Book two=new Book();
one.setPress("人民文学出版社");
one.setPrice(10.0);
two.setPress("中国长安出版社");
two.setPrice(55.5);
//实例化对象,调用相关方法实现运行效果
System.out.println("图书的价格最低10元");
one.descriptor();
System.out.println("==============================");
two.descriptor();
}
}
正在回答 回答被采纳积分+1
- 参与学习 人
- 提交作业 7317 份
- 解答问题 14452 个
想要入门学编程?多年一直活跃在编程语言排行版前列的Java是一个很好的选择。本路径将从Java基础语法、面向对象、常用工具类三部分,为你开启软件开发的大门!
了解课程
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星