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


Java Iterable轉Stream用法及代碼示例


給定一個 Iterable,任務是將其轉換為 Java 中的 Stream。

例子:

Input: Iterable = [1, 2, 3, 4, 5]
Output: {1, 2, 3, 4, 5}

Input: Iterable = ['G', 'e', 'e', 'k', 's']
Output: {'G', 'e', 'e', 'k', 's'}

方法:

  1. 獲取可迭代對象。
  2. 使用 Iterable.spliterator() 方法將 Iterable 轉換為 Spliterator。
  3. 使用 StreamSupport.stream() 方法將形成的 Spliterator 轉換為 Sequential Stream。
  4. 返回流。

下麵是上述方法的實現:


// Java program to get a Stream
// from a given Iterable
  
import java.util.*;
import java.util.stream.*;
  
class GFG {
  
    // Function to get the Stream
    public static <T> Stream<T>
    getStreamFromIterable(Iterable<T> iterable)
    {
  
        // Convert the Iterable to Spliterator
        Spliterator<T>
            spliterator = iterable.spliterator();
  
        // Get a Sequential Stream from spliterator
        return StreamSupport.stream(spliterator, false);
    }
  
    // Driver code
    public static void main(String[] args)
    {
  
        // Get the Iterator
        Iterable<Integer>
            iterable = Arrays.asList(1, 2, 3, 4, 5);
  
        // Get the Stream from the Iterable
        Stream<Integer>
            stream = getStreamFromIterable(iterable);
  
        // Print the elements of stream
        stream.forEach(s -> System.out.println(s));
    }
}
輸出:
1
2
3
4
5

相關用法


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