老师解答一下只读好吗
package com.imooc.object;
public class Book {
//私有属性:书名,作者,出版社,价格
private String name;
private String writer;
private String publish;
private double price;
//通过带参构造方法实现属性(成员变量)赋值
public Book(String name,String writer,String publish,double price)
{
this.name=name;
this.writer=writer;
setPublish(publish);
setPrice(price);
}
//信息介绍方法,描述图书信息
public void introduce()
{
System.out.println("书名:"+this.name);
System.out.println("作者:"+this.writer);
System.out.println("出版社:"+this.publish);
System.out.println("售价:"+this.price);
}
//书名和作者均为只读属性,只有getter方法
public String getName(String name)
{
return this.name;
}
public String getWriter()
{
return this.writer;
}
public String setPublish(String publish)
{
return this.publish;
}
public void getter(String publish)
{
this.publish=publish;
}
//限定图书价格必须大户10,无效时需进行提示,并强行赋值10.0
public void setPrice(double price)
{
if(price<=10)
{
System.out.println("图书价格最低10元");
this.price=10;
}
else
{
this.price=price;
}
}
public double getPrice()
{
return this.price;
}
}
package com.imooc.object;
public class BookTest {
public static void main(String[] args) {
Book book1=new Book("红楼梦","曹雪芹","人民文学出版社",20.0);
Book book2=new Book("小李飞刀","古龙","中国长安出版社",55.5);
book1.introduce();
System.out.println("======================");
book2.introduce();
}
}
在我看来只读在我的代码没有体现,应该怎么写
正在回答 回答被采纳积分+1
- 参与学习 人
- 提交作业 7317 份
- 解答问题 14452 个
想要入门学编程?多年一直活跃在编程语言排行版前列的Java是一个很好的选择。本路径将从Java基础语法、面向对象、常用工具类三部分,为你开启软件开发的大门!
了解课程
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星