當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java LongStream mapToInt()用法及代碼示例


LongStream mapToInt()返回一個IntStream,其中包括將給定函數應用於此流的元素的結果。

注意:LongStream mapToInt()是中間操作。這些操作總是很懶。在Stream實例上調用中間操作,並在完成處理後將中間實例作為輸出提供。
用法:

LongStream mapToInt(LongToIntFunction mapper)

參數:


  1. LongStream : 一係列原始long值元素。這是Stream的長期原始專業化。
  2. mapper : 適用於每個元素的無狀態函數。

返回值:該函數返回一個IntStream,其中包括將給定函數應用於此流的元素的結果。

示例1:

// Java code for LongStream mapToInt 
// (LongToIntFunction mapper) 
import java.util.*; 
import java.util.stream.IntStream; 
import java.util.stream.LongStream; 
  
class GFG { 
  
    // Driver code 
    public static void main(String[] args) 
    { 
        // Creating a LongStream 
        LongStream stream = LongStream.of(2L, 4L, 6L, 8L, 10L); 
          
        // Using LongStream mapToInt(LongToIntFunction mapper) 
        // to return an IntStream consisting of the 
        // results of applying the given function to  
        // the elements of this stream. 
        IntStream stream1 = stream.mapToInt(num -> (int) num);  
  
        // Displaying the elements in stream1 
        stream1.forEach(System.out::println); 
    } 
}

輸出:

2
4
6
8
10

示例2:

// Java code for LongStream mapToInt 
// (LongToIntFunction mapper) 
import java.util.*; 
import java.util.stream.IntStream; 
import java.util.stream.LongStream; 
  
class GFG { 
  
    // Driver code 
    public static void main(String[] args) 
    { 
        // Creating a LongStream 
        LongStream stream = LongStream.of(1L, 2L, 3L, 4L, 5L); 
          
        // Using LongStream mapToInt(LongToIntFunction mapper) 
        // to return an IntStream consisting of the 
        // results of applying the given function to  
        // the elements of this stream. 
        IntStream stream1 = stream.mapToInt(num -> 
                                   (int) num + Integer.MAX_VALUE);  
  
        // Displaying the elements in stream1 
        stream1.forEach(System.out::println); 
    } 
}

輸出:

-2147483648
-2147483647
-2147483646
-2147483645
-2147483644

示例3:

// Java code for LongStream mapToInt 
// (LongToIntFunction mapper) 
import java.util.*; 
import java.util.stream.IntStream; 
import java.util.stream.LongStream; 
  
class GFG { 
  
    // Driver code 
    public static void main(String[] args) 
    { 
        // Creating a LongStream 
        LongStream stream = LongStream.range(2L, 7L); 
          
        // Using LongStream mapToInt(LongToIntFunction mapper) 
        // to return an IntStream consisting of the 
        // results of applying the given function to  
        // the elements of this stream. 
        IntStream stream1 = stream.mapToInt(num -> 
                                    (int) num - 2);  
  
        // Displaying the elements in stream1 
        stream1.forEach(System.out::println); 
    } 
}

輸出:

0
1
2
3
4


相關用法


注:本文由純淨天空篩選整理自Sahil_Bansall大神的英文原創作品 LongStream mapToInt() in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。