El método java.util.Set.size() se usa para obtener el tamaño del Conjunto o la cantidad de elementos presentes en el Conjunto.
Sintaxis:
int size()
Parámetros: Este método no toma ningún parámetro.
Valor devuelto: El método devuelve el tamaño o el número de elementos presentes en el Conjunto.
El siguiente programa ilustra el método java.util.Set.size():
// Java code to illustrate Set.size() method import java.util.*; public class SetDemo { public static void main(String args[]) { // Creating an empty Set Set<String> set = new HashSet<String>(); // Use add() method to add elements into the Set set.add("Welcome"); set.add("To"); set.add("Geeks"); set.add("4"); set.add("Geeks"); // Displaying the Set System.out.println("Set: " + set); // Displaying the size of the Set System.out.println("The size of the set is: " + set.size()); } }
Producción:
Set: [4, Geeks, Welcome, To] The size of the set is: 4
Referencia : https://docs.oracle.com/javase/7/docs/api/java/util/Set.html#size()