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

软件工程

开发平台:

Java

  1. package com.company.section6;
  2. /**
  3.  * @author cbf4Life cbf4life@126.com
  4.  * I'm glad to share my knowledge with you all.
  5.  * 小说书籍
  6.  */
  7. public class NovelBook implements IBook {
  8. //书籍名称
  9. private String name;
  10. //书籍的价格
  11. private int price;
  12. //书籍的作者
  13. private String author;
  14. //通过构造函数传递书籍数据
  15. public NovelBook(String _name,int _price,String _author){
  16. this.name = _name;
  17. this.price = _price;
  18. this.author = _author;
  19. }
  20. //获得作者是谁
  21. public String getAuthor() {
  22. return this.author;
  23. }
  24. //书籍叫什么名字
  25. public String getName() {
  26. return this.name;
  27. }
  28. //获得书籍的价格
  29. public int getPrice() {
  30. return this.price;
  31. }
  32. }