当前位置: 代码迷 >> J2SE >> HashMap 简单有关问题
  详细解决方案

HashMap 简单有关问题

热度:525   发布时间:2016-04-24 15:07:14.0
HashMap 简单问题
import   java.util.*;

public   class   HashMapTest
{
public   static   void   main(String[]   args)
{
HashMap   map   =   new   HashMap();
String   a   =   null   ,b   =   null;
map.put(a,   new   Boolean(false));
map.put(b,   new   Boolean(true));
System.out.println(map.get(a).toString());
System.out.println(map.get(b).toString());
}
}

不明白     为什么   2个都输出     true     高手   给我解决一下了

------解决方案--------------------
两个都是null,当然输出一个,你的hashmap里就存了一个pair而已
------解决方案--------------------
谢谢,呵呵俺明白了...
  相关解决方案