El método java.util.concurrent.ConcurrentSkipListSet.size() es una función integrada en Java que proporciona el recuento total de los elementos presentes en el conjunto.
Sintaxis:
ConcurrentSkipListSet.size()
Parámetros: La función no acepta ningún parámetro.
Valor devuelto: la función devuelve el número de elementos en la cola.
Los siguientes programas ilustran el método ConcurrentSkipListSet.size():
Programa 1:
// Java Program Demonstrate size() // method of ConcurrentSkipListSet import java.util.concurrent.ConcurrentSkipListSet; class ConcurrentSkipListSetSizeExample1 { public static void main(String[] args) { // Initializing the set ConcurrentSkipListSet<Integer> set = new ConcurrentSkipListSet<Integer>(); // Adding elements to this set for (int i = 1; i <= 10; i++) set.add(i); // Printing the size of the set System.out.println("Number of elements in the set = " + set.size()); // Printing the elements System.out.println("set : " + set); } }
Producción:
Number of elements in the set = 10 set : [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
Programa 2:
// Java Program Demonstrate size() // method of ConcurrentSkipListSet import java.util.concurrent.ConcurrentSkipListSet; class ConcurrentSkipListSetSizeExample2 { public static void main(String[] args) { // Initializing the set ConcurrentSkipListSet<String> set = new ConcurrentSkipListSet<String>(); // Adding elements to this set set.add("A"); set.add("B"); set.add("C"); set.add("D"); set.add("E"); // Printing the size of the set System.out.println("Number of elements in the set = " + set.size()); // Printing the elements System.out.println("set : " + set); } }
Producción:
Number of elements in the set = 5 set : [A, B, C, D, E]
Referencia: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ConcurrentSkipListSet.html#size–
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