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

软件工程

开发平台:

Java

  1. package com.company.section4;
  2. /**
  3.  * @author cbf4Life cbf4life@126.com
  4.  * I'm glad to share my knowledge with you all.
  5.  * 计算机书籍
  6.  */
  7. public class ComputerBook implements IComputerBook {
  8. private String name;
  9. private String scope;
  10. private String author;
  11. private int price;
  12. public ComputerBook(String _name,int _price,String _author,String _scope){
  13. this.name=_name;
  14. this.price = _price;
  15. this.author = _author;
  16. this.scope = _scope;
  17. }
  18. public String getScope() {
  19. return this.scope;
  20. }
  21. public String getAuthor() {
  22. return this.author;
  23. }
  24. public String getName() {
  25. return this.name;
  26. }
  27. public int getPrice() {
  28. return this.price;
  29. }
  30. }