El método size() de Java AbstractCollection se utiliza para obtener el tamaño de la Colección o el número de elementos presentes en la Colección.
Sintaxis:
AbstractCollection.size()
Parámetros: El método no toma ningún parámetro.
Valor devuelto: el método devuelve el tamaño o la cantidad de elementos presentes en la colección.
Los siguientes programas ilustran el uso del método AbstractCollection.size():
Programa 1:
Java
// Java code to illustrate size() import java.util.*; import java.util.AbstractCollection; public class AbstractCollectionDemo { public static void main(String args[]) { // Creating an empty Collection AbstractCollection<String> abs = new TreeSet<String>(); // Use add() method to add // elements into the Collection abs.add("Welcome"); abs.add("To"); abs.add("Geeks"); abs.add("4"); abs.add("Geeks"); abs.add("TreeSet"); // Displaying the Collection System.out.println("Collection: " + abs); // Displaying the size of the collection System.out.println("The size of the Collection is: " + abs.size()); } }
Producción:
Collection: [4, Geeks, To, TreeSet, Welcome] The size of the Collection is: 5
Programa 2:
Java
// Java code to illustrate size() import java.util.*; import java.util.AbstractCollection; public class AbstractCollectionDemo { public static void main(String args[]) { // Creating an empty Collection AbstractCollection<String> abs = new LinkedList<String>(); // Using add() method to add // elements in the Collection abs.add("Geeks"); abs.add("for"); abs.add("Geeks"); abs.add("10"); abs.add("20"); // Displaying the Collection System.out.println("Collection:" + abs); // Displaying the size of the Collection System.out.println("The size of the Collection is: " + abs.size()); } }
Producción:
Collection:[Geeks, for, Geeks, 10, 20] The size of the Collection 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