Tag

Intermediate Operations

0 views collected around this technical thread.

Wukong Talks Architecture
Wukong Talks Architecture
Jul 29, 2024 · Backend Development

Understanding the Java Stream Pipeline: Implementation Principles and Execution Process

This article explains the internal workings of Java's Stream API pipeline, covering how intermediate and terminal operations are recorded, combined, and executed via stages and Sink interfaces, illustrating lazy evaluation, stateful vs stateless operations, and the mechanisms behind parallel and sequential processing.

Intermediate OperationsJavaPipeline
0 likes · 21 min read
Understanding the Java Stream Pipeline: Implementation Principles and Execution Process
Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
Oct 24, 2022 · Fundamentals

Java Stream API Tutorial: Definitions, Operations, and Code Examples

This tutorial provides a comprehensive overview of Java's Stream API, explaining its definition, how to obtain streams, the structure of stream processing, and detailed examples of common intermediate and terminal operations with complete code snippets.

Functional ProgrammingIntermediate OperationsJava
0 likes · 25 min read
Java Stream API Tutorial: Definitions, Operations, and Code Examples
Full-Stack Internet Architecture
Full-Stack Internet Architecture
Sep 2, 2019 · Fundamentals

Introduction to Java 8 Stream API: Creation, Intermediate and Terminal Operations

This article introduces Java 8’s Stream API, explaining its purpose, key characteristics, how to create streams from collections or directly, and demonstrating common intermediate operations such as filter, map, limit, sorted, distinct, as well as terminal operations like forEach, count, and collect, with code examples.

CollectionsFunctional ProgrammingIntermediate Operations
0 likes · 9 min read
Introduction to Java 8 Stream API: Creation, Intermediate and Terminal Operations