set的三种遍历

Posted 松峰

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

set的三种遍历

遍历Map集合的三种方法

Map的三种遍历方式

java里set list 为啥能遍历集合

Map三种遍历方式

List,Set,Map集合的遍历方法