DoubleStream forEachOrdered() method in Java


The forEachOrdered() method of the DoubleStream class in Java performs an action for each element of this stream. This assures that each element is processed in encounter order for streams that have a defined encounter order.

The syntax is as follows

void forEachOrdered(DoubleConsumer action)

Here, DoubleConsumer represents an operation that accepts a single double-valued argument and returns no result. The parameter action is a non-interfering action to perform on the elements.

To use the DoubleStream class in Java, import the following package

import java.util.stream.DoubleStream;

The following is an example to implement DoubleStream forEachOrdered() method in Java:

Example

 Live Demo

import java.util.stream.DoubleStream;
public class Demo {
   public static void main(String[] args) {
      DoubleStream doubleStream = DoubleStream.of(45.7, 67.8, 89.7, 95.6);
      doubleStream.forEachOrdered(System.out::println);
   }
}

Output

45.7
67.8
89.7
95.6

Updated on: 30-Jul-2019

73 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements