【QA】Java集合的常见遍历方式

前言

本文主要讲述Java集合常见的遍历方式。

通用遍历方式 | Collection集合

迭代器Iterator遍历

java 复制代码
Collection<Student> c = new ArrayList<>();

c.add(new Student("张三", 23));
c.add(new Student("李四", 24));
c.add(new Student("王五", 25));


// 1. 获取迭代器
Iterator<Student> it = c.iterator();

// 2. 循环判断, 集合中是否还有元素
while (it.hasNext()) {
    // 3. 调用next方法, 将元素取出
    Student stu = it.next();
    System.out.println(stu.getName() + "---" + stu.getAge());
}

增强for循环:本质还是迭代器

java 复制代码
Collection<Student> c = new ArrayList<>();

c.add(new Student("张三", 23));
c.add(new Student("李四", 24));
c.add(new Student("王五", 25));

// 使用增强for循环遍历集合:内部还是迭代器,通过.class文件可以看出来
for (Student stu : c) {
    System.out.println(stu);
}

forEach方法:本质是匿名内部类

java 复制代码
Collection<Student> c = new ArrayList<>();

c.add(new Student("张三", 23));
c.add(new Student("李四", 24));
c.add(new Student("王五", 25));

// foreach方法遍历集合:匿名内部类
c.forEach(stu -> System.out.println(stu));

额外的遍历方式 | List集合

普通for循环

java 复制代码
List<String> list = new ArrayList<>();
list.add("abc");
list.add("bbb");
list.add("ccc");
list.add("abc");

// 普通for循环
for (int i = 0; i < list.size(); i++) {
    String s = list.get(i);
    System.out.println(s);
}

ListIterator【List集合特有】

java 复制代码
List<String> list = new ArrayList<>();
list.add("abc");
list.add("bbb");
list.add("ccc");
list.add("abc");

ListIterator<String> it = list.listIterator();

while (it.hasNext()) {
    String s = it.next();
    System.out.println(s);
}

【补充】ListIterator和Iterator的区别

两者的区别主要体现在遍历过程中添加、删除元素上。具体见下表:(表中的方法均在遍历过程中使用)

add() remove()
不管在任何迭代过程中,调用集合本身的方法 引发异常 引发异常
Iterator迭代过程中,调用Iterator迭代器的方法 不支持 支持
ListIterator迭代过程中,调用ListIterator迭代器的方法 支持 支持

针对ListIterator迭代器:

  • 删除操作:删除当前迭代到的数据
  • 添加操作:添加数据到当前迭代到的数据后面
  • 在一个迭代内,不允许既增加,又删除
java 复制代码
package com.itheima.collection.list;

import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import java.util.ListIterator;

public class ListDemo3 {
    public static void main(String[] args) {

        List<String> list = new ArrayList<>();

        list.add("眼瞅着你不是真正的高兴");
        list.add("温油");
        list.add("离开俺们这旮表面");
        list.add("伤心的人别扭秧歌");
        list.add("私奔到东北");

        ListIterator<String> it = list.listIterator();
        while (it.hasNext()) {
            String s = it.next();
            if ("温油".equals(s)) {
                it.add("哈哈");  		// 迭代器的添加操作:没问题
                it.remove();		 // 迭代器的删除操作:没问题(但是和上边的添加操作放在一个迭代内,就报错了)
                list.add("哈哈"); 	// 集合本身的添加操作:报错
                list.remove("温油"); 	// 集合本身的删除操作:报错
            }
        }
        System.out.println(list);
    }
}

额外的遍历方式 | Map集合

增强For循环(迭代器)

增强for循环,本质是迭代器的方式遍历

  • map.keySet() + map.get(key):获取map集合的所有键,并用增强for遍历所有键,然后用get方法获取每一个键对应的值
  • map.values():获取map集合的所有值,进行遍历
  • map.entrySet() + entry.getKey() + entry.getValue():获取map集合的Entry对象,每个对象里面包含键和值

通过forEach方法遍历

  • map.forEach:直接获取每一个集合对象的键和值,进行遍历操作

示例

java 复制代码
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;

public class MapTest {
    public static void main(String[] args) {
        HashMap<Integer, String> testMap = new HashMap<>();

        testMap.put(1, "One");
        testMap.put(2, "Two");
        testMap.put(3, "Three");
        testMap.put(4, "Four");
        testMap.put(5, "Five");

        // 增强for:第一种
        for (Integer key : testMap.keySet()) {
            System.out.print(key + "-" + testMap.get(key) + "\t");
        }
        System.out.println("\nforeach keySet");

        // 增强for:第二种
        for (String value : testMap.values()) {
            System.out.print(value + "\t");
        }
        System.out.println("\nforeach values");

        // 增强for:第三种
        for (Map.Entry<Integer, String> entry : testMap.entrySet()) {
            System.out.print(entry.getKey() + "-" + entry.getValue() + "\t");
        }
        System.out.println("\nforeach entrySet");

        // 增强for:第三种(迭代器形式,上述第三种本质也是迭代器方式,但是书写更简单)
        Iterator<Map.Entry<Integer, String>> it = testMap.entrySet().iterator();
        while (it.hasNext()) {
            Map.Entry<Integer, String> entry = it.next();
            System.out.print(entry.getKey() + "-" + entry.getValue() + "\t");
        }
        System.out.println("\nentrySet iterator");

        // foreach:Map的forEach方法,Java8独有
        testMap.forEach((key, value) -> {
            System.out.print(key + "-" + value + "\t");
        });
        System.out.println("\nMap.forEach()");
    }
}
运行结果:
1-One 2-Two 3-Three 4-Four 5-Five
foreach keySet
One Two Three Four Five
foreach values
1-One 2-Two 3-Three 4-Four 5-Five
foreach entrySet
1-One 2-Two 3-Three 4-Four 5-Five
entrySet iterator
1-One 2-Two 3-Three 4-Four 5-Five
Map.forEach()
相关推荐
小白学大数据1 分钟前
JavaScript重定向对网络爬虫的影响及处理
开发语言·javascript·数据库·爬虫
Python大数据分析@4 分钟前
python操作CSV和excel,如何来做?
开发语言·python·excel
上海_彭彭29 分钟前
【提效工具开发】Python功能模块执行和 SQL 执行 需求整理
开发语言·python·sql·测试工具·element
3345543237 分钟前
element动态表头合并表格
开发语言·javascript·ecmascript
沈询-阿里42 分钟前
java-智能识别车牌号_基于spring ai和开源国产大模型_qwen vl
java·开发语言
AaVictory.1 小时前
Android 开发 Java中 list实现 按照时间格式 yyyy-MM-dd HH:mm 顺序
android·java·list
残月只会敲键盘1 小时前
面相小白的php反序列化漏洞原理剖析
开发语言·php
ac-er88881 小时前
PHP弱类型安全问题
开发语言·安全·php
ac-er88881 小时前
PHP网络爬虫常见的反爬策略
开发语言·爬虫·php
爱吃喵的鲤鱼1 小时前
linux进程的状态之环境变量
linux·运维·服务器·开发语言·c++