美文网首页
集合 -- 迭代器

集合 -- 迭代器

作者: 咔狼 | 来源:发表于2018-10-20 14:15 被阅读0次

    Iterator

    • 用于遍历集合
    • 遍历集合常用的方法有 foreach 和 iterator
    使用 iterator 遍历集合
    Iterator it = collection.iterator();
    
    while (it.hasNext()) {
        System.out.println(it.next());
    }
    
    for (Iterator it = collection.iterator();it.hasNext();) {
        System.out.println(it.next());
    }
    
    使用 foreach 遍历集合
    for (String t : collection) {
        System.out.println(t);
    }
    

    相关文章

      网友评论

          本文标题:集合 -- 迭代器

          本文链接:https://www.haomeiwen.com/subject/pnqmzftx.html