set集合遍历

Posted bug_锋

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了set集合遍历相关的知识,希望对你有一定的参考价值。

对 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集合遍历的主要内容,如果未能解决你的问题,请参考以下文章

java里set list 为啥能遍历集合

Java中Set集合怎样用for遍历?

Kotlin集合操作总结 ( List 集合 | MutableList 集合 | List 集合遍历 | Set 集合 | MutableSet 集合 | Map 集合 | 可变 Map集合 )

Kotlin集合操作总结 ( List 集合 | MutableList 集合 | List 集合遍历 | Set 集合 | MutableSet 集合 | Map 集合 | 可变 Map集合 )

201621123037 《Java程序设计》第9周学习总结

Java中Set集合怎样用for遍历?