Tuesday, July 2, 2024
HomeLanguagesJavaLongStream of() in Java

LongStream of() in Java

LongStream of(long t)

LongStream of(long t) returns a sequential LongStream containing a single element.
Syntax :

static LongStream of(long t)

Parameters :

  1. LongStream : A sequence of primitive long-valued elements.
  2. t : Represents the single element in the LongStream.

Return Value : LongStream of(long t) returns a sequential LongStream containing the single specified element.

Example :




// Java code for LongStream of(long t)
// to get a sequential LongStream
// containing a single element.
import java.util.*;
import java.util.stream.LongStream;
  
class GFG {
  
    // Driver code
    public static void main(String[] args)
    {
        // Creating an LongStream having single element only
        LongStream stream = LongStream.of(-7L);
  
        // Displaying the LongStream having single element
        stream.forEach(System.out::println);
    }
}


Output:

-7

LongStream of(long… values)

LongStream of(long… values) returns a sequential ordered stream whose elements are the specified values.
Syntax :

static LongStream of(long... values)

Parameters :

  1. LongStream : A sequence of primitive long-valued elements.
  2. values : Represents the elements of the new stream.

Return Value : LongStream of(long… values) returns a sequential ordered stream whose elements are the specified values.

Example 1 :




// Java code for LongStream of(long... values)
// to get a sequential ordered stream whose
// elements are the specified values.
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, -9L, -11L);
  
        // Displaying the sequential ordered stream
        stream.forEach(System.out::println);
    }
}


Output:

-7
-9
-11

Example 2 :




// Java code for LongStream of(long... values)
// to get a sequential ordered stream whose
// elements are the specified values.
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, -9L, -11L);
  
        // Storing the count of elements in LongStream
        long total = stream.count();
  
        // Displaying the count of elements
        System.out.println(total);
    }
}


Output:

3

Nokonwaba Nkukhwana
Experience as a skilled Java developer and proven expertise in using tools and technical developments to drive improvements throughout a entire software development life cycle. I have extensive industry and full life cycle experience in a java based environment, along with exceptional analytical, design and problem solving capabilities combined with excellent communication skills and ability to work alongside teams to define and refine new functionality. Currently working in springboot projects(microservices). Considering the fact that change is good, I am always keen to new challenges and growth to sharpen my skills.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments