下面的代码表明值是通过引用返回的:
public class Playground {
public static void main(String[] args) {
Map<Integer, vinfo> map = new HashMap<Integer, vinfo>();
map.put(1, new vinfo(true));
map.put(2, new vinfo(true));
map.put(3, new vinfo(true));
for(vinfo v : map.values()){
v.state = false;
}
printMap(map);
}
public static void printMap(Map m){
Iterator it = m.entrySet().iterator();
while(it.hasNext()){
Map.Entry pairs = (Map.Entry) it.next();
Integer n = (Integer) pairs.getKey();
vinfo v = (vinfo) pairs.getValue();
System.out.println(n + "=" + v.state);
}
}
}
class vinfo{
boolean state;
public vinfo(boolean state){
this.state = state;
}
}
输出:
1=假
2=假
3=假
在下面的代码中,它们是按值返回的。然而; 我正在使用整数对象。
public class Playground {
public static void main(String[] args) {
Map<Integer, Integer> map = new HashMap<Integer, Integer>();
map.put(1, 1);
map.put(2, 1);
map.put(3, 1);
for(Integer n : map.values()){
n+=1;
}
printMap(map);
}
public static void printMap(Map m){
Iterator it = m.entrySet().iterator();
while(it.hasNext()){
Map.Entry pairs = (Map.Entry) it.next();
Integer n = (Integer) pairs.getKey();
Integer n2 = (Integer) pairs.getValue();
System.out.println(n + "=" + n2);
}
}
}
输出:
1=1
2=1
3=1
我如何知道我何时直接更改值(或相关的键)或者我必须执行完整的 .remove() 和 .put()。