当前位置: 代码迷 >> J2SE >> 关于存储对象的有关问题
  详细解决方案

关于存储对象的有关问题

热度:115   发布时间:2016-04-24 12:38:42.0
关于存储对象的问题
有这样的数据
  id name

------解决方案--------------------
什么问题?
------解决方案--------------------

Java code
  private static HashMap<Integer,A> map=new HashMap<Integer,A>();  pubilc static void putToMap(int id,String name){       A temp=null;       if(map.get(id)!==null){             temp=map.get(id);             temp.name.add(name);                        }else{           temp=new A(id,name);        }        map.put(id,temp);  }
  相关解决方案