为什么我的出版社输出无效?

为什么我的出版社输出无效?

如图,下面是我的代码。输出以后出版社是Null,但价格却能正常输出。我在Book中将出版社改为this.press=press后可以正常输出,请问是为什么?非常感谢!

相关代码:

public class Book {
//私有属性:书名、作者、出版社、价格
private String name;
private String author;
private String press;
private double price;
//通过构造方法实现属性赋值
public Book(String name,String author,String press,double price){
this.name=name;
this.author=author;
this.setPress(press);
this.setPrice(price);

}

public String getName(){
return this.name;
}

public String getAuthor(){
return this.author;
}
public void setPress(String press){

}
public String getPress(){
return this.press;
}
public void setPrice(double price){
if(price<=10.0){
this.price=10.0;
System.out.println("图书价格最低10元");

}
else
this.price=price;
}
public double getPrice(){

return this.price;
}
public void intro(){
System.out.println("书名:"+this.name);
System.out.println("作者:"+this.author);
System.out.println("出版社:"+this.press);
System.out.println("价格:"+this.price+"元");
}
/*通过公有的get/set方法实现属性的访问,其中:
1、限定图书价格必须大于10,如果无效需进行提示,并强制赋值为10
2、限定作者、书名均为只读属性
*/

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


}

相关代码:

public class BookTest {

// 测试方法
public static void main(String[] args) {
//实例化对象,调用相关方法实现运行效果
Book one = new Book("红楼梦","曹雪芹","人民文学出版社",5.0);

one.intro();

Book two = new Book("小李飞刀","古龙","中国长安出版社",55.5);

two.intro();
}
}

相关截图:

http://img1.sycdn.imooc.com//climg/6041d9d309b7e3f802790340.jpg

正在回答

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

1回答

​同学你好,输出的出版社为null是因为在setPress()方法中没有设置press值。

参考代码如下:

http://img1.sycdn.imooc.com//climg/6041ec2e09f605a403520088.jpg

祝学习愉快~​

问题已解决,确定采纳
还有疑问,暂不采纳

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

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

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

在线咨询

领取优惠

免费试听

领取大纲

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