我的程序读取的是一个包含5个参数的文件。 我已经建立了一个带有这些参数的单元类,但是现在它被要求能够读取另一个文件,这个有6个参数,但它让我想到我是否可以获得一个包含10个以上参数的文件而且我的单元类不会准备好存储所有数据,所以我想知道我是否可以在运行时向类中添加更多变量。
样品
单元类
public class Unit implements Serializable {
private String name;
private String unitId;
private byte year;
private String semester;
private String type;
private int credits;
public Unit(String name, String unitId, byte year, String semester, int credits) {
setName(name);
setUnitId(unitId);
setYear(year);
setSemester(semester);
setType(null);
setCredits(credits);
}
public Unit(String name, String unitId, byte year, String semester, String type, int credits) {
setName(name);
setUnitId(unitId);
setYear(year);
setSemester(semester);
setType(type);
setCredits(credits);
}
// Set's get's and all that stuff.
}
读取文件的示例代码
Scanner input = new Scanner(f);
ArrayList<Unit> units = new ArrayList();
while (input.hasNext()) {
String str = input.nextLine();
if (ignoreFirstLine) {
ignoreFirstLine = false;
} else {
String[] ArrayStr = str.split(";");
if(ArrayStr.length == 5){
Unit unit = new Unit(ArrayStr[0], ArrayStr[1], Byte.parseByte(ArrayStr[2]), ArrayStr[3], Integer.parseInt(ArrayStr[4]));
units.add(unit);
} else if (ArrayStr.length == 6){
Unit unit = new Unit(ArrayStr[0], ArrayStr[1], Byte.parseByte(ArrayStr[2]), ArrayStr[3], ArrayStr[4], Integer.parseInt(ArrayStr[5]));
units.add(unit);
} else {
//Modify classes in Runtime?
}
编辑:我的英语太棒了:D
答案 0 :(得分:2)
所以我想知道我是否可以在运行时向类中添加更多变量
没有。在Java中,您无法将新变量插入到已编译的程序中。
如果您不确定如何获得参数(及其类型),请尝试将它们存储在集合中(例如HashMap<Long, Object>
)。
else {
HashMap<Long, Object> map = new HashMap<>();
for(int i = 6; i < ArrayStr.length; i++)
//add items here
Unit unit = new Unit(ArrayStr[0],
ArrayStr[1],
Byte.parseByte(ArrayStr[2]),
ArrayStr[3],
ArrayStr[4],
Integer.parseInt(ArrayStr[5]),
map);
units.add(unit);
}
请注意,您必须更改constructor
。
否则,您必须更改您的设计。您可以查看此thread。