Sunday, February 22, 2026
HomeLanguagesJavaLongStream forEach() method in Java

LongStream forEach() method in Java

LongStream forEach(LongConsumer action) performs an action for each element of the stream. LongStream forEach(LongConsumer action) is a terminal operation i.e, it may traverse the stream to produce a result or a side-effect.

Syntax :

void forEach(LongConsumer action)

Parameter : LongConsumer represents an operation that accepts a single long-valued argument and returns no result. This is the primitive type specialization of Consumer for long.

Note : The behavior of this operation is explicitly nondeterministic. Also, for any given element, the action may be performed at whatever time and in whatever thread the library chooses.

Example 1 :




// Java code for LongStream forEach
// (LongConsumer action) in Java 8
import java.util.*;
import java.util.stream.LongStream;
  
class GFG {
  
    // Driver code
    public static void main(String[] args)
    {
        // Creating an LongStream
        LongStream stream = LongStream.of(7L, 8L, 9L, 10L);
  
        // Using LongStream.forEach
        stream.forEach(System.out::println);
    }
}


Output:

7
8
9
10

Example 2 :




// Java code for LongStream forEach
// (LongConsumer action) in Java 8
import java.util.*;
import java.util.stream.LongStream;
  
class GFG {
  
    // Driver code
    public static void main(String[] args)
    {
        // Creating an LongStream
        LongStream stream = LongStream.range(4L, 9L);
  
        // Using LongStream.forEach() on sequential stream
        stream.forEach(System.out::println);
    }
}


Output:

4
5
6
7
8

Note : For parallel stream, LongStream forEach(LongConsumer action) does not guarantee to respect the encounter order of the stream, as doing so would sacrifice the benefit of parallelism. Below is the example.

Example 3 :




// Java code for LongStream forEach
// (LongConsumer action) in Java 8
import java.util.*;
import java.util.stream.LongStream;
  
class GFG {
  
    // Driver code
    public static void main(String[] args)
    {
        // Creating an LongStream
        LongStream stream = LongStream.range(4L, 9L);
  
        // Using LongStream.forEach() on parallel stream
        stream.parallel().forEach(System.out::println);
    }
}


Output:

6
8
7
5
4
RELATED ARTICLES

3 COMMENTS

Most Popular

Dominic
32506 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6882 POSTS0 COMMENTS
Nicole Veronica
12005 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12099 POSTS0 COMMENTS
Shaida Kate Naidoo
7011 POSTS0 COMMENTS
Ted Musemwa
7255 POSTS0 COMMENTS
Thapelo Manthata
6967 POSTS0 COMMENTS
Umr Jansen
6956 POSTS0 COMMENTS