El método java.util.concurrent.ConcurrentSkipListSet.isEmpty() es una función integrada en Java que se utiliza para comprobar si este conjunto está vacío o no.
Sintaxis:
ConcurrentSkipListSet.isEmpty()
Parámetros: La función no acepta ningún parámetro.
Valor devuelto: la función devuelve un valor booleano. Devuelve verdadero si ConcurrentSkipListSet está vacío y devuelve falso en caso contrario.
Los siguientes programas ilustran el método ConcurrentSkipListSet.IsEmpty():
Programa 1: en este programa, ConcurrentSkipListSet no está vacío.
// Java Program to demonstrate isEmpty() // method of ConcurrentSkipListSet() import java.util.concurrent.*; class ConcurrentSkipListSetIsEmptyExample1 { public static void main(String[] args) { // Creating a set object ConcurrentSkipListSet<Integer> Lset = new ConcurrentSkipListSet<Integer>(); // Adding elements to this set for (int i = 10; i <= 50; i += 10) Lset.add(i); // Checks if this set is empty or not if (Lset.isEmpty()) System.out.println("The set is empty."); else System.out.println("The set is non-empty."); } }
The set is non-empty.
Programa 2: En este programa, ConcurrentSkipListSet está vacío.
// Java program to demonstrate isEmpty() // method of ConcurrentSkipListSet() import java.util.concurrent.*; class ConcurrentSkipListSetIsEmptyExample2 { public static void main(String[] args) { // Creating a set object ConcurrentSkipListSet<Integer> Lset = new ConcurrentSkipListSet<Integer>(); // Checks if this set is empty or not if (Lset.isEmpty()) System.out.println("The set is empty."); else System.out.println("The set is non-empty."); } }
The set is empty.
Referencia: https://docs.oracle.com/javase/7/docs/api/java/util/concurrent/ConcurrentSkipListSet.html#add(E)
Publicación traducida automáticamente
Artículo escrito por rupesh_rao y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA