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


Java DoubleStream allMatch()用法及代碼示例


DoubleStream allMatch(DoublePredicate謂詞)返回此流的所有元素是否與提供的謂詞匹配。如果不一定要確定結果,則可能不會評估所有元素上的謂詞。這是短路端子操作。如果出現無限輸入時,端子操作可能會在有限時間內終止,則該端子操作會發生短路。
用法:

boolean allMatch(DoublePredicate predicate)

參數:

  1. DoublePredicate : 一個雙值參數的謂詞(布爾值函數)。

返回值:如果流中的所有元素都與提供的謂詞匹配,或者流為空,則該函數返回true,否則返回false。


注意:如果流為空,則返回true,並且不評估謂詞。

示例1:allMatch()函數來檢查是否所有元素都可以被3整除。

// Java code for DoubleStream allMatch 
// (DoublePredicate predicate) to check whether 
// all elements of this stream match 
// the provided predicate. 
import java.util.*; 
import java.util.stream.DoubleStream; 
  
class GFG { 
  
    // Driver code 
    public static void main(String[] args) 
    { 
        // Creating an DoubleStream 
        DoubleStream stream = DoubleStream.of(3.8, 5.6, 9.2, 
                                              12.5, 14.7); 
  
        // Check if all elements of stream 
        // are divisible by 3 or not using 
        // DoubleStream allMatch(DoublePredicate predicate) 
        boolean answer = stream.allMatch(num -> num % 3 == 0); 
  
        // Displaying the result 
        System.out.println(answer); 
    } 
}
輸出:
false

示例2:allMatch()函數,用於檢查兩個DoubleStream串聯後獲得的DoubleStream中的所有元素是否小於2。

// Java code for DoubleStream allMatch 
// (DoublePredicate predicate) to check whether 
// all elements of this stream match 
// the provided predicate. 
import java.util.*; 
import java.util.stream.DoubleStream; 
  
class GFG { 
  
    // Driver code 
    public static void main(String[] args) 
    { 
        // Creating an DoubleStream after concatenating 
        // two DoubleStreams 
        DoubleStream stream = DoubleStream.concat( 
            DoubleStream.of(-2.2, -4.3, -6.4, -8.5), 
            DoubleStream.of(-1.5, 0, 1.7, 5.9)); 
  
        // Check if all elements of stream 
        // are less than 2 or not using 
        // DoubleStream allMatch(DoublePredicate predicate) 
        boolean answer = stream.allMatch(num -> num < 2.0); 
  
        // Displaying the result 
        System.out.println(answer); 
    } 
}
輸出:
false

示例3:allMatch()函數,以顯示流是否為空,然後返回true。

// Java code for DoubleStream allMatch 
// (DoublePredicate predicate) to check whether 
// any element of this stream match 
// the provided predicate. 
import java.util.*; 
import java.util.stream.DoubleStream; 
  
class GFG { 
  
    // Driver code 
    public static void main(String[] args) 
    { 
        // Creating an empty DoubleStream 
        DoubleStream stream = DoubleStream.empty(); 
  
        boolean answer = stream.allMatch(num -> true); 
  
        // Displaying the result 
        System.out.println(answer); 
    } 
}
輸出:
true


相關用法


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