我有一个hashmap当我打印这个hashmap的输出是这样的
{KEY_CH_UP=KEY_CH_UP, KEY_PANEL_CH_UP=KEY_PANEL_CH_UP, KEY_7=KEY_7, KEY_6=KEY_6, KEY_5=null}
现在我想要得到所有包含
的键values == null ;
遍历下面的内容,检查值是否为null:
Map<String, String> map = new HashMap<String, String>();
for(Map.Entry<String, String> en: map.entrySet()){
if(en.getValue()==null){
System.out.println(en.getKey());
}
}