IntStream empty() es un método en java.util.stream.IntStream. Este método devuelve un IntStream secuencial vacío.
Sintaxis:
static <T> Stream<T> empty() Where, T is the type of stream elements, and the function returns an empty sequential stream.
Ejemplo 1: Creación de IntStream vacío.
// Java code for IntStream empty() import java.util.*; import java.util.stream.IntStream; class GFG { // Driver code public static void main(String[] args) { // creating an empty IntStream, a sequence of // primitive int-valued elements IntStream stream = IntStream.empty(); // Displaying an empty sequential stream System.out.println(stream.count()); } }
Producción :
0
Ejemplo 2: Creación de LongStream vacío.
// Java code for LongStream empty() method import java.util.*; import java.util.stream.LongStream; class GFG { // Driver code public static void main(String[] args) { // creating an empty LongStream, a sequence of // primitive long-valued elements LongStream stream = LongStream.empty(); // Displaying an empty sequential stream System.out.println(stream.count()); } }
Producción :
0
Publicación traducida automáticamente
Artículo escrito por Sahil_Bansall y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA