当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java IntStream parallel()用法及代码示例


IntStream parallel()是java.util.stream.IntStream中的方法。此方法返回一个并行的IntStream,即,它可能会返回自身,这是因为该流已经存在,或者是因为基础流状态已被修改为并行。

IntStream parallel()是中间操作。这些操作总是很懒。在Stream实例上调用中间操作,并在完成处理后将中间实例作为输出提供。

用法:


IntStream parallel()

Where, IntStream is a sequence of 
primitive int-valued elements and the function 
returns a parallel IntStream.

下面给出一些示例,以更好地理解该函数。
示例1:

// Java program to demonstrate working of 
// IntStream parallel() on a given range 
import java.util.*; 
import java.util.stream.IntStream; 
  
class GFG { 
  
    // Driver code 
    public static void main(String[] args) 
    { 
  
        // Creating a stream of integers 
        IntStream stream = IntStream.range(5, 12); 
  
        System.out.println("The corresponding " +  
                         "parallel IntStream is :"); 
        stream.parallel().forEach(System.out::println); 
    } 
}

输出:

The corresponding parallel IntStream is :
9
8
11
10
6
5
7

示例2:

// Printing sequential stream for the  
// same input as above example 1. 
import java.util.*; 
import java.util.stream.IntStream; 
  
class GFG { 
  
    // Driver code 
    public static void main(String[] args) 
    { 
        IntStream stream = IntStream.range(5, 12); 
  
        System.out.println("The corresponding " +  
                      "sequential IntStream is :"); 
        stream.sequential().forEach(System.out::println); 
    } 
}

输出:

The corresponding sequential IntStream is :
5
6
7
8
9
10
11

示例3:

// Java program to show sorted output 
// of parallel stream. 
import java.util.*; 
import java.util.stream.IntStream; 
  
class GFG { 
  
    // Driver code 
    public static void main(String[] args) 
    { 
  
        // Creating a stream of integers 
        IntStream stream = IntStream.of(3, 4, 1, 5, 2, 3, 9); 
  
        System.out.println("The sorted parallel" +  
                              " IntStream is :"); 
        stream.parallel().sorted().forEach(System.out::println); 
    } 
}

输出:

The sorted parallel IntStream is :
4
2
3
1
3
5
9

请注意,它仍然显示为未排序。那是因为正在使用forEach()。要按排序顺序处理项目,请使用forEachOrdered()。但是请注意,这否定了使用并行的优势。



相关用法


注:本文由纯净天空筛选整理自Sahil_Bansall大神的英文原创作品 IntStream parallel() in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。