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


Java IntStream concat()用法及代碼示例


IntStream concat()方法創建一個級聯流,其中的元素是第一個流的所有元素,後跟第二個流的所有元素。如果兩個輸入流都是有序的,則結果流是有序的;如果兩個輸入流中的任何一個是並行的,則結果流是並行的。

用法:

static IntStream concat(IntStream a,  IntStream b)

Where, IntStream is a sequence of primitive int-valued elements,
a represents the first stream,
b represents the second stream and
the function returns the concatenation of
the two input IntStreams.

可以將對IntStream.concat(IntStream a,IntStream b)的調用視為形成二叉樹。所有輸入流的串聯都在根。各個輸入流位於葉子處。下麵給出的是3個IntStream a,b和c的示例。


每個附加的輸入流為樹增加了一層深度,並為所有其他流增加了一層間接。

注意:IntStream.concat()方法返回的元素是有序的。例如,以下兩行返回相同的結果:

IntStream.concat(IntStream.concat(stream1, stream2), stream3);
IntStream.concat(stream1, IntStream.concat(stream2, stream3));

但是以下兩個結果是不同的。

IntStream.concat(IntStream.concat(stream1, stream2), stream3); 
IntStream.concat(IntStream.concat(stream2, stream1), stream3);

示例1:

// Implementation of IntStream.concat() 
// method in Java 8 with 2 IntStreams 
import java.util.*; 
import java.util.stream.IntStream; 
import java.util.stream.Stream; 
  
class GFG { 
  
    // Driver code 
    public static void main(String[] args) 
    { 
        // Creating two IntStreams 
        IntStream stream1 = IntStream.of(2, 4, 6); 
        IntStream stream2 = IntStream.of(1, 3, 5); 
  
        // concatenating both the Streams 
        // with IntStream.concat() function 
        // and displaying the result 
        IntStream.concat(stream1, stream2) 
            .forEach(element -> System.out.println(element)); 
    } 
}
輸出:
2
4
6
1
3
5

示例2:

// Implementation of IntStream.concat() 
// method in Java 8 with 2 IntStreams 
import java.util.*; 
import java.util.stream.IntStream; 
import java.util.stream.Stream; 
  
class GFG { 
  
    // Driver code 
    public static void main(String[] args) 
    { 
        // Creating two IntStreams 
        IntStream stream1 = IntStream.of(2, 4, 6); 
        IntStream stream2 = IntStream.of(1, 2, 4); 
  
        // concatenating both the Streams 
        // with IntStream.concat() function 
        // and displaying distinct elements 
        // in the concatenated IntStream 
        IntStream.concat(stream1, stream2).distinct(). 
        forEach(element -> System.out.println(element)); 
    } 
}
輸出:
2
4
6
1


相關用法


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