1、利用迭代器进行迭代遍历:

Set<Object> sets = new HashSet<Object>();
Iterator<Object> it = set.iterator();
while (it.hasNext()) {
  String str = (String)it.next();
  System.out.println(str);
}

2、for循环遍历:

for (String str : sets) {
      System.out.println(str);
}

3、foreach循环遍历:

Set<Object> set = new HashSet<Object>();
for (Object obj: sets) {
      if(obj instanceof Integer){
                int aa= (Integer)obj;
             }else if(obj instanceof String){
               String aa = (String)obj
             }
              ……..
}

云海天教程网,大量的免费python教程,欢迎在线学习!

来源:PY学习网:原文地址:https://www.py.cn/article.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » python如何遍历set