NovelBook.java
上传用户:hensond
上传日期:2021-12-27
资源大小:817k
文件大小:1k
- package com.company.section4;
- /**
- * @author cbf4Life cbf4life@126.com
- * I'm glad to share my knowledge with you all.
- * 小说书籍
- */
- public class NovelBook implements IBook {
- //书籍名称
- private String name;
-
- //书籍的价格
- private int price;
-
- //书籍的作者
- private String author;
-
-
-
- //通过构造函数传递书籍数据
- public NovelBook(String _name,int _price,String _author){
- this.name = _name;
- this.price = _price;
- this.author = _author;
- }
-
- //获得作者是谁
- public String getAuthor() {
- return this.author;
- }
- //书籍叫什么名字
- public String getName() {
- return this.name;
- }
- //获得书籍的价格
- public int getPrice() {
- return this.price;
- }
- }