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

set的三种遍历

时间:2018-02-05 14:16:03      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:system   pos   class   hash   遍历   instance   bsp   new   泛型   

对 set 的遍历 
 
1.迭代遍历: 
Set<String> set = new HashSet<String>(); 
Iterator<String> it = set.iterator(); 
while (it.hasNext()) { 
  String str = it.next(); 
  System.out.println(str); 

 
2.for循环遍历: 
for (String str : set) { 
      System.out.println(str); 

 
 
优点还体现在泛型 假如 set中存放的是Object 
 
Set<Object> set = new HashSet<Object>(); 
for循环遍历: 
for (Object obj: set) { 
      if(obj instanceof Integer){ 
                int aa= (Integer)obj; 
             }else if(obj instanceof String){ 
               String aa = (String)obj 
             } 
              ........ 
}

 

set的三种遍历

标签:system   pos   class   hash   遍历   instance   bsp   new   泛型   

原文地址:https://www.cnblogs.com/xusongfeng/p/8416921.html

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