计算机系的毕业设计

来源:百度知道 编辑:UC知道 时间:2024/04/30 10:42:40
要做一个针对安全方面的 软件测试系统 不知道该从哪下手 希望各位高手指点

目前最全面的是everest_ultimate_,这里有下载的地址,你去看看吧,很全面的是最专业的测试硬件工具http://www.orsoon.com/Soft/1775.html
可供你参考一下,如何设计自己的软件测试系统

//computer.java
package com.ecit;

public class Computer {
private String pcName; //计算机品牌
private String pcColor; //计算机颜色
private String pcType; //CPU型号
private int pcPrice; //价格
private String pcState; //工作状态
public Computer(){

}
public Computer(String pcName,String pcColor,String pcType,int pcPrice,String pcState)
{
this.pcName=pcName;
this.pcColor=pcColor;
this.pcType=pcType;
this.pcPrice=pcPrice;
this.pcState=pcState;
}
public String toString() //输出的方法
{
return "pcName:"+pcName+"pcColor:"+pcColor+"pcType:"+
pcType+"pcPrice:"+pcPrice+"pcState:"+pcState;
}
public String tu