• 大小: 18KB
    文件类型: .rar
    金币: 2
    下载: 1 次
    发布日期: 2021-08-01
  • 语言: Java
  • 标签: java  

资源简介

纯java写的library的图书管理系统管理员可以实现对注册用户的管理(删除),并实现对图书的创建、查询、修改和删除等有关的操作

资源截图

代码片段和文件信息

/*!Begin Snippet:file*/
/**
 * This class models a book. It extends {@link CatalogItem} and
 * adds the following information:
 * 

     * 
  1. the author of the book a String

  2.  * 
  3. the number of pages in the book an int

  4.  * 

 *
 * @author iCarnegie
 * @version  1.0.0
 * @see CatalogItem
 */
public class Book extends CatalogItem  {

/* Author of the book.*/
private String  author;

/* Number of pages in the book.*/
private int  numberOfPages;

/**
 * Constructs a Book object.
 *
 * @param initialCode  the code of the book.
 * @param initialtitle  the title of the book.
 * @param initialYear  the year the book was published.
 * @param initialAuthor  the author of the book.
 * @param initialNumberOfPages  the number of pages in the book.
 */
public Book(String initialCode String initialtitle
  int initialYear String initialAuthor
int initialNumberOfPages) {

super(initialCode initialtitle initialYear);

this.author = initialAuthor;
this.numberOfPages = initialNumberOfPages;
}

/**
 * Returns the author of this book.
 *
 * @return  the author of this book.
 */
public String  getAuthor()  {

return  this.author;
}

/**
 * Returns the number of pages in this book.
 *
 * @return  the number of pages in this book.
 */
public int  getNumberOfPages()  {

return  this.numberOfPages;
}

/**
 * Returns the string representation of this book.
 *
 * @return  the string representation of this book.
 */
public String toString()  {

return  super.toString() + “_“ + getAuthor() + “_“
        + getNumberOfPages();
}
}
/*!End Snippet:file*/

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        821  2009-11-20 14:51  纯java写的library\t\Book.class

     文件       1732  2009-09-27 13:57  纯java写的library\t\Book.java

     文件       1305  2009-11-20 14:51  纯java写的library\t\BorrowedItems.class

     文件       2117  2009-09-27 13:57  纯java写的library\t\BorrowedItems.java

     文件       1000  2009-11-20 14:51  纯java写的library\t\Borrower.class

     文件       2335  2009-09-27 13:57  纯java写的library\t\Borrower.java

     文件       1173  2009-11-20 14:51  纯java写的library\t\BorrowerDatabase.class

     文件       1717  2009-09-27 13:57  纯java写的library\t\BorrowerDatabase.java

     文件       1159  2009-11-20 14:51  纯java写的library\t\Catalog.class

     文件       1717  2009-09-27 13:57  纯java写的library\t\Catalog.java

     文件       1239  2009-11-20 14:51  纯java写的library\t\CatalogItem.class

     文件       2986  2009-09-27 13:57  纯java写的library\t\CatalogItem.java

     文件       8400  2009-11-20 14:51  纯java写的library\t\LibrarySystem.class

     文件      11438  2009-09-27 13:57  纯java写的library\t\LibrarySystem.java

     文件        789  2009-11-20 14:51  纯java写的library\t\Recording.class

     文件       1777  2009-09-27 13:57  纯java写的library\t\Recording.java

     目录          0  2010-04-25 14:05  纯java写的library\t

     目录          0  2016-11-09 19:32  纯java写的library

----------- ---------  ---------- -----  ----

                41705                    18


评论

共有 条评论