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


Java IntStream flatMap(IntFunction mapper)用法及代码示例


IntStream flatMap(IntFunction mapper)返回一个流,该流包括将流中的每个元素替换为通过将提供的映射函数应用于每个元素而生成的映射流的内容而得到的结果。这是一个中间操作。这些操作总是很懒。在Stream实例上调用中间操作,并在完成处理后将中间实例作为输出提供。

注意:将每个映射流的内容放入该流后,将其关闭。如果映射的流为null,则使用空流。

用法:


IntStream flatMap(IntFunction? extends IntStream> mapper)

参数:

  1. IntStream:原始整数值元素的序列。
  2. IntFunction:接受整数值参数并产生结果的函数。
  3. mapper:适用于每个元素的无状态函数,该函数返回新流。

返回值:IntStream flatMap(IntFunction mapper)通过使用映射函数的映射流返回流。

范例1:使用IntStream flatMap()获取IntStream元素的多维数据集。

// Java code for IntStream flatMap 
// (IntFunction mapper) to get a stream 
// consisting of the results of replacing 
// each element of this stream with the 
// contents of a mapped stream 
import java.util.*; 
import java.util.stream.IntStream; 
  
class GFG { 
  
    // Driver code 
    public static void main(String[] args) 
    { 
        // Creating an IntStream 
        IntStream stream1 = IntStream.of(4, 5, 6, 7); 
  
        // Using IntStream flatMap() 
        IntStream stream2 = stream1.flatMap(num 
                  -> IntStream.of(num * num * num)); 
  
        // Displaying the resulting IntStream 
        stream2.forEach(System.out::println); 
    } 
}

输出:

64
125
216
343

范例2:使用IntStream flatMap()获取IntStream元素的二进制表示形式中的设置位计数。

// Java code for IntStream flatMap 
// (IntFunction mapper) to get a stream 
// consisting of the results of replacing 
// each element of this stream with the 
// contents of a mapped stream 
import java.util.*; 
import java.util.stream.IntStream; 
  
class GFG { 
  
    // Driver code 
    public static void main(String[] args) 
    { 
        // Creating an IntStream 
        IntStream stream1 = IntStream.of(49, 64, 81, 100); 
  
        // Using IntStream flatMap() 
        IntStream stream2 = stream1.flatMap(num 
               -> IntStream.of(Integer.bitCount(num))); 
  
        // Displaying the resulting IntStream 
        stream2.forEach(System.out::println); 
    } 
}

输出:

3
1
3
3


相关用法


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