以下のコードは、値が参照によって返されることを示しています。
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() を実行する必要があることをどのように知ることができますか。