资源简介
此代码是我们课程设计的内容之一,代码是用GUI实现的对初学者很有帮助,里面的功能强大,涉及各种排序、查找、添加等功能
代码片段和文件信息
package BooksManage;
public class Books {
private String time;
private String name; //书的名称
private String author; //书的作者
private String cost; //书的价格
private String type; //书的类型
public Books(){
this.time=““;
this.name=““;
this.author=““;
this.cost=““;
this.type=““;
}
public Books(String timeString nameString authorString costString type){
this.time=time;
this.name=name;
this.author=author;
this.cost=cost;
this.type=type;
}
public Books(String[] str){
this.type=str[0];
this.name=str[1];
this.author=str[2];
this.cost=str[3];
this.time=str[4];
}
public Books(Books book) {
this.type=book.getType();
this.name=book.getName();
this.author=book.getAuthor();
this.cost=book.getCost();
this.time=book.getTime();
}
public String getTime(){
return time;
}
public String getName(){
return name;
}
public String getAuthor(){
return author;
}
public String getCost(){
return cost;
}
public String getType(){
return type;
}
public String toString(){
return this.getType()+“ “+this.getName()+“ “+this.getAuthor()+“ “+this.getCost()+“ “+this.getTime();
}
public long timeToString(){
long date;
String str=““;
if(time.length()==8){
str=time.substring(04)+0+time.substring(56)+0+time.substring(78);
}else if(time.length()==9&&time.charAt(7)==‘-‘){
str=time.substring(04)+time.substring(57)+0+time.substring(89);
}
else if(time.length()==9&&time.charAt(6)==‘-‘){
str=time.substring(04)+0+time.substring(56)+time.substring(79);
}else if(time.length()==10){
str=time.substring(04)+time.substring(57)+time.substring(810);
}
date=Integer.parseInt(str);
return date;
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1772 2009-01-01 10:30 简单个人书管理系统的设计与实现\Books.java
文件 17606 2009-01-16 12:26 简单个人书管理系统的设计与实现\Manager.java
目录 0 2009-01-16 12:26 简单个人书管理系统的设计与实现
----------- --------- ---------- ----- ----
19378 3
相关资源
- TI Power Mgt Voltage Regulator.IntLib
- CTags及tags58插件
- 自己写的一个分页控件,可以实现d
- datagridview增加汇总行 源码
- jtag的verilog代码
- 实现TreeView和ListView合体效果的控件
- flowtaglayout相关源码 直接copy到项目中
- DSP、ARM、TI-JTAG引脚定义及规范
- datagrideview实现导出数据
- processing时钟
- TAG静态化-5.7-亲测可用转拼音
- datagridview添加一个合计行[美好实用版
- easyui datagrid实现实现上下左右和回车
- 一个可折叠行的DataGridView控件
- wintreetagger.exe
- DataGridView 合计行
- JTAG 驱动安装程序及方法
- MSP430F5438A 与仿真器的SBW接法
- 14芯和20芯的JTAG的原理图设计
- DataGridViewAutoFilter 每列多选
- usbisp ii WIN7/8线驱动-双龙JUNGO-Atmel-
- JTAG的封装库及演示
- Demo_Voltage_Read。vi
- Datagridview合计行
- JTAG接口作用和JTAG原理介绍
- JTAG设计规范
- FGFR10P tagSNP基因多态性与中国汉族人
- zadig-2.5.zip
- datagrid-filter
- Four-stage Cu3O2 bonding quantum kinetics
评论
共有 条评论