我有一個哈希映射和值。現在我想將地圖中的值設置爲鍵和鍵作爲值。任何人都可以提出任何想法HashMap鍵和值
我的地圖是
Map<String, String> col=new HashMap<String, String>();
col.put("one","four");
col.put("two","five");
col.put("three","Six");
現在我想創建另一個地圖,並把它在其他的方式如我上面說。即,
Map<String, String> col2=new HashMap<String, String>();
col.put("five","one");
col.put("four","two");
col.put("Six","three");
有人有想法嗎?謝謝
謝謝。我知道了 – 2013-03-11 11:08:13
-1:不必要的n²複雜性。 – Boann 2013-03-11 11:39:34
@Boann我同意。 'entrySet'方法並沒有打擊我。 – 2013-03-11 11:57:31