作用是判断Map中是否有所需要的键值,下面是具体的代码:
public static void mainString[] args) { Map<String, String> map = new HashMap<String, String>); map.put"sf2", "111111"); map.put"s3f", "111111"); map.put"s4f", "111111"); map.put"s5f", "111111"); Boolean is = map.containsKey"f2"); ifis){ System.out.println"是有这个值的"); }else{ System.out.println"没有的"); } }