• 大小: 2KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-06-14
  • 语言: Java
  • 标签: Java  合工大  实验  

资源简介

合工大java程序设计实验,实现货物管理机制,包含三个部分,需要建立文件存储货物信息,从文件读入处理货物信息

资源截图

代码片段和文件信息

package test2;

public class Inventory {
String itemNumber;
int quantity;
String supplierdescription;
int flag;



public Inventory(String itemNumber int quantity String supplier String description int flag) {
super();
this.itemNumber = itemNumber;
this.quantity = quantity;
this.supplier = supplier;
this.description = description;
this.flag = flag;
}

@Override
public boolean equals(object obj) {
if(!(obj instanceof Inventory)) {
return false;
}
Inventory inve = (Inventory)obj;
return this.itemNumber.equals(inve.itemNumber);
}

   /* @Override
    public String toString() {
     StringBuffer s = new StringBuffer();
     s.append(itemNumber).append(“\t“).append(quantity).append(“\t“).append(supplier).append(“\t“).append(description);
     return s.toString();
    
    }
    */
}



 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         870  2018-10-12 22:34  code\Inventory.java
     文件        4590  2018-10-12 23:06  code\Test.java
     文件        1645  2018-10-12 21:47  code\Transaction.java

评论

共有 条评论