
1条回答 默认 最新
- 普通网友 2021-10-28 19:44关注
既然提了,就不怕,放心
/** * * @author kk * * 有疑问,私---**信__我 * */ public class Book { private String name, author, press; private double price; public String getName() { return name; } public void setName(String name) { this.name = name; } public String getAuthor() { return author; } public void setAuthor(String author) { this.author = author; } public String getPress() { return press; } public void setPress(String press) { this.press = press; } public double getPrice() { return price; } public void setPrice(double price) { this.price = price; } }本回答被题主选为最佳回答 , 对您是否有帮助呢?评论 打赏 举报解决 1无用