资源简介
纯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
相关资源
- mysql数据处理,java用户登录处理
- 法律咨询信息系统(java+jsp+sqlserver)
- Java快速开发平台源码(renren-fast)
- 锐聘学院QST青软JavaWeb十二个打包
- 3.3.6微信支付JAVA版demo
- javaweb网上购物系统源码(附数据库脚
- javaweb校园宿舍系统(附数据库脚本)
- JavaWeb书城项目(附数据库脚本)
- 基于JAVA_JSP电子书系统(源码+数据库
- Java网络编程知识点总结.xmind
- 一站式Java网络编程 BIO-NIO-AIO资料源码
- jsp讲解
- 基于SSH框架的JavaWeb项目—人员信息管
- javaweb实现的邮件收发系统(附数据库
- Java 仿QQ(附客户端以及服务端源码)
- Java TCP IP Socket
- java定时发送邮件(基于quartz)
- Java Swing开发的《星际争霸》游戏
- java+数据库商品交易管理系统(附数据
- 使用java语言编译一个计算器
- java swing工资管理系统(源码+数据库
- JAVALibrary
- 微信企业号回调模式Java版
- 顺丰丰桥接口开发详细教程源码含下
- Java博客概要设计文档
- 药品进销存管理系统(论文范文_JSP
- 奖学金管理系统java+jsp+mysql
- 毕设参考——基于java酒店管理
- Java写的一个简单的字体更改程序
- java8学习教程之lambda表达式的使用方法
评论
共有 条评论