¿Cómo obtener un tamaño de colección en Java?

Dada una colección en Java, la tarea es encontrar la longitud o el tamaño de la colección.

Ejemplos:

Input: Array_List: [1, 2, 3,4]
Output: 4

Input: Linked_List: [geeks, for, geeks]
Output: 3

El tamaño de las diferentes colecciones se puede encontrar con el método size() . Este método devuelve el número de elementos de esta colección. Este método no toma ningún parámetro.

A continuación se muestra la implementación:

Ejemplo 1:

Java

// Java program to demonstrate
// size() method of collection
  
import java.util.*;
  
public class Example1 {
    public static void main(String[] args)
    {
  
        // Creating object of List<Integer>
        List<Integer> Array_List = new ArrayList<Integer>();
  
        // add elements 
        Array_List.add(1);
        Array_List.add(2);
        Array_List.add(3);
        Array_List.add(3);
  
        // getting total size of list
        // using size() method
        int size = Array_List.size();
  
        // print the size of list
        System.out.println("Size of list = " + size);
  
        // print list
        System.out.println("Array_List = " + Array_List);
    }
}
Producción

Size of list = 4
Array_List = [1, 2, 3, 3]

Ejemplo 2: 

Java

// Java program to demonstrate
// size() method of Collection
import java.util.*;
import java.io.*;
  
class Example2 {
    public static void main(String[] args)
    {
  
        // Creating object of LinkedList<Integer>
        LinkedList<String> al = new LinkedList<String>();
  
        // Populating LinkedList
        al.add("GEEKS");
        al.add("FOR");
        al.add("GEEKS");
  
        // getting total size of Linkedlist
        // using size() method
        int size = al.size();
  
        // print the size
        System.out.println("Size of the linkedlist = "
                           + size);
  
        // print Linkedlist
        System.out.println("Linkedlist = " + al);
    }
}
Producción

Size of the linkedlist = 3
Linkedlist = [GEEKS, FOR, GEEKS]

Publicación traducida automáticamente

Artículo escrito por kumar_satyam y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *