OffNovelBook.java
上传用户:hensond
上传日期:2021-12-27
资源大小:817k
文件大小:1k
源码类别:

软件工程

开发平台:

Java

  1. package com.company.section5;
  2. /**
  3.  * @author cbf4Life cbf4life@126.com
  4.  * I'm glad to share my knowledge with you all.
  5.  * 打折销售的图书
  6.  */
  7. public class OffNovelBook extends NovelBook {
  8. public OffNovelBook(String _name,int _price,String _author){
  9. super(_name,_price,_author);
  10. }
  11. //覆写销售价格
  12. @Override
  13. public int getPrice(){
  14. //原价
  15. int selfPrice = super.getPrice();
  16. int offPrice=0;
  17. if(selfPrice>4000){  //原价大于40元,则打9折
  18. offPrice = selfPrice * 90 /100;
  19. }else{
  20. offPrice = selfPrice * 80 /100;
  21. }
  22. return offPrice;
  23. }
  24. }