- public static HashMap IHM2(HashMap<Integer,String> map)//题目二方法,方法内定义一个hashmap,将删除后剩下的值和键返回
- {
- HashMap<Integer,String> mapnew=new HashMap<Integer,String>();
- mapnew.putAll(map);
- Set<Integer> st= map.keySet();
- Iterator<Integer> it=st.iterator();
- while(it.hasNext())
- {
- int key =it.next();
-
- String valu=map.get(key);
- int va=Integer.parseInt(valu);
- if((key>50)&&(key<150))
- {
- mapnew.remove(key);
- }
- }
-
- return mapnew;
- }
复制代码
他的这个方法不对了。 |