首页 >Java >java教程 >流中的 forEach 和 map 有什么区别?

流中的 forEach 和 map 有什么区别?

Barbara Streisand
Barbara Streisand原创
2024-11-19 16:55:03923浏览

What is the difference between forEach and map in streams?

forEach:对流的每个元素执行操作但不转换或返回数据的终端操作。

map:转换流中的每个元素并返回转换元素的新流。

带有列表的基本 forEach

import java.util.Arrays;
import java.util.List;

public class ForEachExample {
    public static void main(String[] args) {
        List<String> names = Arrays.asList("Alice", "Bob", "Charlie");

        // Print each name using forEach
        names.forEach(name -> System.out.println(name));
    }
}

地图示例

List<String> names = Arrays.asList("Alice", "Bob");
names.stream().forEach(System.out::println); // Simply prints each name

List<Integer> nameLengths = names.stream()
                                 .map(String::length) // Transforms each name to its length
                                 .collect(Collectors.toList());

以上是流中的 forEach 和 map 有什么区别?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn