我有一个关于 Java-Collections 的问题。我遍历 Java 集合,如果 if 子句为真,我想更改集合的条目。在 if 子句主体中接受新值,但如果我想稍后打印整个集合,它会再次打印出具有旧值的集合。
这里的代码:
public boolean checkConsumeStorageCapacity(Multimap<String, Values> mm1, Multimap<String, Values> mm2)
{
boolean enoughStorageCapacity = false;
Multimap<String, Values> mmApp = mm1;
Multimap<String, Values> mmHW = mm2;
Collection<Values> colA = mmApp.get("Storage");
Collection<Values> colH = mmHW.get("Memory");
for (Values vA2 : colA) {
for (Values vH2 : colH) {
if (vA2.getName().equals("Size") && vH2.getName().equals("Size")) {
float StoSize = Float.parseFloat(vA2.getValue());
float MemSize = Float.parseFloat(vH2.getValue());
float maintainableStoSize = StoSize * maintainabilityfactor;
if (MemSize >= maintainableStoSize) {
MemSize -= maintainableStoSize;
vH2.setValue(String.valueOf(MemSize));
String s = vH2.getValue();
System.out.println(s);
enoughStorageCapacity = true;
return enoughStorageCapacity;
}
break;
}
}
}
System.out.println(colH);
Values 是一个包含 3 个字符串的对象。getter/setter 都已正确声明。打印出 s 给出正确的值,但打印出 colH 再次给出旧值。设置新值还不够,我还必须在集合中提交任何内容吗?
提前非常感谢。
编辑:这里是值类,以供进一步理解。
public class Values {
private String name;
private String type;
private String value;
public Values(String name, String type, String value)
{
this.name = name;
this.type = type;
this.value = value;
}
public String getName()
{
return name;
}
public String getType()
{
return type;
}
public String getValue()
{
return value;
}
public void setName(String name)
{
this.name = name;
}
public void setValue(String value)
{
this.value = value;
}
public void setType(String type)
{
this.type = type;
}
@Override
public String toString() {
return "name=" + name + ", type=" + type + ", value=" + value;
}
}