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   
             }   
              ........   
}   

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/17399.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论