Maison >Java >javaDidacticiel >Comment utiliser Java Match

Comment utiliser Java Match

王林
王林avant
2023-04-18 13:55:031372parcourir

Concept

1. Diverses opérations de correspondance peuvent être utilisées pour déterminer si un prédicat donné répond aux éléments d'un flux.

2. L'opération Match est une opération de terminal et renvoie une valeur booléenne.

Instances

boolean anyStartsWithA =
    stringCollection
        .stream()
        .anyMatch((s) -> s.startsWith("a"));
 
System.out.println(anyStartsWithA);      // true
 
boolean allStartsWithA =
    stringCollection
        .stream()
        .allMatch((s) -> s.startsWith("a"));
 
System.out.println(allStartsWithA);      // false
 
boolean noneStartsWithZ =
    stringCollection
        .stream()
        .noneMatch((s) -> s.startsWith("z"));
 
System.out.println(noneStartsWithZ);      // true

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

Déclaration:
Cet article est reproduit dans:. en cas de violation, veuillez contacter admin@php.cn Supprimer