为了账号安全,请及时绑定邮箱和手机立即绑定

Java 面向对象封装的代码练习

标签:
Java

私有属性:书名、作者、出版社、价格

通过公有的get/set方法实现属性的访问,其中:

  1. 限定图书价格必须大于10,如果无效需进行提示,并强制赋值为10
  2. 限定作者、书名均为只读属性

图片描述

public class BookTest {

     // 测试方法
	 public static void main(String[] args) {
      //实例化对象,调用相关方法实现运行效果
        Book bk = new Book("红楼梦","曹雪芹");
        bk.setPress("人民文学出版社");
        bk.setPrice(10);
        bk.showInfo();
        System.out.println("===============");
        Book bk2 = new Book("小李飞刀","古龙");
        bk2.setPress("中国长安出版社");
        bk2.setPrice(55.5);
        bk2.showInfo();
     }
}
public class Book {
  //私有属性:书名、作者、出版社、价格
    private String name,author,press;
    private double price;
  //通过构造方法实现属性赋值
    public Book(){
        
    }
    public Book(String name,String author){
        this.name = name;
        this.author = author;
    }
    /*通过公有的get/set方法实现属性的访问,其中:
    1、限定图书价格必须大于10,如果无效需进行提示,并强制赋值为10
    2、限定作者、书名均为只读属性
    */
    public void setPress(String press){
        this.press = press;
    }
    public void setPrice(double price){
        if(price<=10){
            this.price=10;
            System.out.println("图书价格最低10元");
        }
        else
            this.price = price;
    }
    public String getName(){
        return name;
    }
    public String getAuthor(){
        return author;
    }
    public String getPress(){
        return press;
    }
    public double getPrice(){
        return price;
    }
  //信息介绍方法,描述图书所有信息
    public void showInfo(){
        System.out.println("书名:"+this.name);
        System.out.println("作者:"+this.author);
        System.out.println("出版社:"+this.press);
        System.out.println("价格:"+this.price+"元");
    }

}
点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消