IntStream asDoubleStream() example

Description

IntStream asDoubleStream() returns a DoubleStream consisting of the elements of this stream, converted to double. This is an intermediate operation.

Syntax

asDoubleStream has the following syntax.


DoubleStream asDoubleStream()

Example

The following example shows how to use asDoubleStream.


import java.util.stream.DoubleStream;
import java.util.stream.IntStream;
/*  ww w  . j a va2  s .  c  o  m*/
public class Main {
  public static void main(String[] args) {
    IntStream i = IntStream.of(6,5,7,1, 2, 3, 4);
    DoubleStream d = i.asDoubleStream();
    d.forEach(System.out::println);
  }
}

The code above generates the following result.





















Home »
  Java Streams »
    Reference »




Collectors
DoubleStream
DoubleStream.Builder
IntStream
IntStream.Builder
LongStream
LongStream.Builder
Stream
Stream.Builder