首頁 > Java > java教程 > 主體

流中的 forEach 和 map 有什麼不同?

Barbara Streisand
發布: 2024-11-19 16:55:03
原創
872 人瀏覽過

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中文網其他相關文章!

來源:dev.to
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板