码迷,mamicode.com
首页 > 其他好文 > 详细

List containsKey 和Map contains 判断集合中是否包含某个值

时间:2019-07-02 00:40:41      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:strong   list集合   system   tor   print   pre   nta   col   asn   

map集合

//1.第一种
HashMap map = new HashMap();  
        map.put("1", "value1");  
        map.put("2", "value2");  
        Iterator keys = map.keySet().iterator();  
       while(keys.hasNext()){  
            String key = (String)keys.next();  
            if("2".equals(key)){  
                System.out.println("存在key");  
            }  
        }

//2.第二种  
boolean flag=map.containsKey("email")  

List集合

List list=new ArrayList(); 
list.add("224"); 
list.add("2252"); 
list.add("226"); 
list.add("227");
if(list.contains("2252")){ 
    System.out.print("包含");
} 

 

List containsKey 和Map contains 判断集合中是否包含某个值

标签:strong   list集合   system   tor   print   pre   nta   col   asn   

原文地址:https://www.cnblogs.com/yysbolg/p/11095753.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!