Map移除key

        Map map = new HashMap();
        map.put("11", "aa");
        map.put("22", "bb");
        Iterator it = map.keySet().iterator();
        while(it.hasNext()){
            String t = it.next();
            if(t.equals("11")){
                map.remove(t); 
            }
        }

 

你可能感兴趣的:(java)