Java Arrays stream(double[] a) 方法



描述

Java Arrays stream(double[] a) 方法返回一个以指定数组作为源的顺序 DoubleStream。

声明

以下是 java.util.Arrays.stream(double[] a) 方法的声明

public static DoubleStream stream​(double[] array)

参数

a - 这是数组,假设在使用期间不会被修改。

返回值

此方法返回数组元素的流。

异常

Java Arrays stream​(double[] a, int fromIndex, int toIndex) 方法

描述

Java Arrays stream(double[] a, int fromIndex, int toIndex) 方法返回一个以指定数组的指定范围作为源的顺序 DoubleStream。

声明

以下是 java.util.Arrays.stream(double[] a, int fromIndex, int toIndex) 方法的声明

public static DoubleStream stream​(double[] array, int fromIndex, int toIndex)

参数

  • a - 这是数组,假设在使用期间不会被修改。

  • fromIndex - 这是要包含的第一个元素的索引。

  • toIndex - 这是要排除的最后一个元素的索引

返回值

此方法返回数组元素的流。

异常

  • ArrayIndexOutOfBoundsException - 如果 fromIndex < 0 或 toIndex > array.length

获取双精度数组流示例

以下示例演示了 Java Arrays stream(double[]) 方法的用法。首先,我们创建了一个双精度数组。使用 stream() 方法,之后打印数组。

package com.tutorialspoint;

import java.util.Arrays;

public class ArrayDemo {
   public static void main(String[] args) {
      // initialize array
      double arr[] = { 11.0, 54.0, 23.0, 32.0, 15.0, 24.0, 31.0, 12.0 };

      System.out.print("Array: [ ");

      // use the stream to print each item
      Arrays.stream(arr).forEach(i -> System.out.print(i + " "));
      
      System.out.print("]");
   }
}

输出

让我们编译并运行以上程序,这将产生以下结果:

Array: [ 11.0 54.0 23.0 32.0 15.0 24.0 31.0 12.0 ]

使用范围获取双精度数组流示例

以下示例演示了 Java Arrays stream(double[], int, int) 方法的用法。首先,我们创建了一个双精度数组。使用 stream() 方法,之后打印数组。

package com.tutorialspoint;

import java.util.Arrays;

public class ArrayDemo {
   public static void main(String[] args) {
      // initialize array
      double arr[] = { 11.0, 54.0, 23.0, 32.0, 15.0, 24.0, 31.0, 12.0 };

      System.out.print("Array: [ ");

      // use the stream to print each item
      Arrays.stream(arr, 0, arr.length).forEach(i -> System.out.print(i + " "));
      
      System.out.print("]");
   }
}

输出

让我们编译并运行以上程序,这将产生以下结果:

Array: [ 11.0 54.0 23.0 32.0 15.0 24.0 31.0 12.0 ]

获取双精度子数组流示例

以下示例演示了 Java Arrays stream(double[], int, int) 方法的用法。首先,我们创建了一个双精度数组。使用 stream() 方法,之后打印一个子数组。

package com.tutorialspoint;

import java.util.Arrays;

public class ArrayDemo {
   public static void main(String[] args) {
      // initialize array
      double arr[] = { 11.0, 54.0, 23.0, 32.0, 15.0, 24.0, 31.0, 12.0 };

      System.out.print("Array: [ ");

      // use the stream to print each item
      Arrays.stream(arr, 0, 5).forEach(i -> System.out.print(i + " "));
      
      System.out.print("]");
   }
}

输出

让我们编译并运行以上程序,这将产生以下结果:

Array: [ 11.0 54.0 23.0 32.0 15.0 ]
java_util_arrays.htm
广告