Sunday, February 8, 2026
HomeLanguagesJavaLongStream empty() in Java with examples

LongStream empty() in Java with examples

LongStream empty() is a method in java.util.stream.LongStream. This method returns an empty sequential LongStream.
Syntax :

static LongStream empty() 

Parameters :

  1. LongStream : A sequence of primitive long-valued elements.

Return Value : An empty sequential LongStream.

Example 1 : Creating empty LongStream.




// Java code for LongStream empty()
import java.util.*;
import java.util.stream.LongStream;
  
class GFG {
  
    // Driver code
    public static void main(String[] args)
    {
  
        // creating an empty LongStream, a sequence of
        // primitive long-valued elements
        LongStream stream = LongStream.empty();
  
        // Displaying an empty sequential stream
        System.out.println(stream.count());
    }
}


Output :

0
RELATED ARTICLES

Most Popular

Dominic
32493 POSTS0 COMMENTS
Milvus
126 POSTS0 COMMENTS
Nango Kala
6864 POSTS0 COMMENTS
Nicole Veronica
11990 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12084 POSTS0 COMMENTS
Shaida Kate Naidoo
7000 POSTS0 COMMENTS
Ted Musemwa
7241 POSTS0 COMMENTS
Thapelo Manthata
6951 POSTS0 COMMENTS
Umr Jansen
6936 POSTS0 COMMENTS