このような地図があります
Map map=new HashMap();//HashMap key random order.
map.put("a",10);
map.put("a",20);
map.put("a",30);
map.put("b",10);
System.out.println("There are "+map.size()+" elements in the map.");
System.out.println("Content of Map are...");
Set s=map.entrySet();
Iterator itr=s.iterator();
while(itr.hasNext())
{
Map.Entry m=(Map.Entry)itr.next();
System.out.println(m.getKey()+"\t"+m.getValue()+"\t"+ m.hashCode());
}
上記のプログラムの出力は
There are 2 elements in the map.
Content of Map are...
b 10 104
a 30 127
今、私はそのキーが次のような複数の値を持つ必要があることを望んでいます
a 10
a 20
a 30
そのため、a によって関連付けられたすべての値を取得する必要があります。どうすれば同じことを達成できるか教えてください。コレクションをネストすることで、キー「a」に 3 つの値すべてを持たせたいと考えています。