El método Java.util.TreeSet.size() se usa para obtener el tamaño del conjunto de árboles o la cantidad de elementos presentes en el conjunto de árboles.
Sintaxis:
Tree_Set.size()
Parámetros: El 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 uso del método Java.util.TreeSet.size():
// Java code to illustrate size() import java.util.*; import java.util.TreeSet; public class TreeSetDemo { public static void main(String args[]) { // Creating an empty TreeSet TreeSet<String> tree = new TreeSet<String>(); // Use add() method to add elements into the Set tree.add("Welcome"); tree.add("To"); tree.add("Geeks"); tree.add("4"); tree.add("Geeks"); tree.add("TreeSet"); // Displaying the TreeSet System.out.println("TreeSet: " + tree); // Displaying the size of the set System.out.println("The size of the set is: " + tree.size()); } }
Producción:
TreeSet: [4, Geeks, To, TreeSet, Welcome] The size of the set is: 5
Publicación traducida automáticamente
Artículo escrito por Chinmoy Lenka y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA