Java Arrays stream(long[] a) 方法



描述

Java Arrays stream(long[] a) 方法返回一个覆盖指定数组所有元素的 LongStream。

声明

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

public static LongStream stream​(long[] array)

参数

a − 这是数组,假设在使用过程中不会被修改。

返回值

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

异常

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

描述

Java Arrays stream(long[] a, int fromIndex, int toIndex) 方法返回一个覆盖指定数组指定范围的 LongStream。

声明

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

public static LongStream stream​(long[] array, int fromIndex, int toIndex)

参数

  • a − 这是数组,假设在使用过程中不会被修改。

  • fromIndex − 这是要覆盖的第一个元素的索引,包含该元素。

  • toIndex − 这是要覆盖的最后一个元素的索引,不包含该元素。

返回值

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

异常

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

获取长整型数组的流示例

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

package com.tutorialspoint;

import java.util.Arrays;

public class ArrayDemo {
   public static void main(String[] args) {
      // initialize array
      long arr[] = { 11L, 54L, 23L, 32L, 15L, 24L, 31L, 12L };

      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 54 23 32 15 24 31 12 ]

使用范围获取长整型数组的流示例

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

package com.tutorialspoint;

import java.util.Arrays;

public class ArrayDemo {
   public static void main(String[] args) {
      // initialize array
      long arr[] = { 11L, 54L, 23L, 32L, 15L, 24L, 31L, 12L };

      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 54 23 32 15 24 31 12 ]

获取长整型子数组的流示例

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

package com.tutorialspoint;

import java.util.Arrays;

public class ArrayDemo {
   public static void main(String[] args) {
      // initialize array
      long arr[] = { 11L, 54L, 23L, 32L, 15L, 24L, 31L, 12L };

      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 54 23 32 15 ]
java_util_arrays.htm
广告