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

代码片段和文件信息
/*!Begin Snippet:file*/
/**
* This class models a book. It extends {@link CatalogItem} and
* adds the following information:
*
* - the author of the book a
String
* - the number of pages in the book an
int
*
*
* @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\BorrowerDataba
文件 1717 2009-09-27 13:57 纯java写的library\t\BorrowerDataba
文件 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
相关资源
- 三角网构TIN生成算法,Java语言实现
- java代码编写将excel数据导入到mysql数据
- Java写的cmm词法分析器源代码及javacc学
- JAVA JSP公司财务管理系统 源代码 论文
- JSP+MYSQL旅行社管理信息系统
- 推荐算法的JAVA实现
- 基于Java的酒店管理系统源码(毕业设
- java-图片识别 图片比较
- android毕业设计
- java23种设计模式+23个实例demo
- java Socket发送/接受报文
- JAVA828436
- java界面美化 提供多套皮肤直接使用
- 在线聊天系统(java代码)
- 基于Java的图书管理系统807185
- java中实现将页面数据导入Excel中
- java 企业销售管理系统
- java做的聊天系统(包括正规课程设计
- Java编写的qq聊天室
- 商店商品管理系统 JAVA写的 有界面
- JAVA开发聊天室程序
- 在linux系统下用java执行系统命令实例
- java期末考试试题两套(答案) 选择(
- JAVA3D编程示例(建模、交互)
- Java 文件加密传输
- java做的房产管理系统
- 基于jsp的bbs论坛 非常详细
- [免费]java实现有障碍物的贪吃蛇游戏
- java Servlet投票实例
- 操作系统作业 (pv,作业管理,等5个
评论
共有 条评论