Método LinkedTransferQueue size() en Java

El método java.util.concurrent.LinkedTransferQueue.size() es una función integrada en Java que proporciona el recuento total de los elementos presentes en la cola.

Sintaxis:

LinkedTransferQueue.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 LinkedTransferQueue.size():

Programa 1:

// Java Program Demonstrate size()
// method of LinkedTransferQueue 
  
import java.util.concurrent.LinkedTransferQueue;
  
class LinkedTransferQueueSizeExample1 {
    public static void main(String[] args)
    {
        // Initializing the queue
        LinkedTransferQueue<Integer> queue =
                      new LinkedTransferQueue<Integer>();
  
        // Adding elements to this queue
        for (int i = 1; i <= 10; i++)
            queue.add(i);
  
        // Printing the size of the queue
        System.out.println("Number of elements in the queue = " 
                                                + queue.size());
        // Printing the elements
        System.out.println("Queue : " + queue);
    }
}
Producción:

Number of elements in the queue = 10
Queue : [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]

Programa 2:

// Java Program Demonstrate size()
// method of LinkedTransferQueue 
  
import java.util.concurrent.LinkedTransferQueue;
  
class LinkedTransferQueueSizeExample2 {
    public static void main(String[] args)
    {
        // Initializing the queue
        LinkedTransferQueue<String> queue = 
                  new LinkedTransferQueue<String>();
  
        // Adding elements to this queue
        queue.add("A");
        queue.add("B");
        queue.add("C");
        queue.add("D");
        queue.add("E");
  
        // Printing the size of the queue
        System.out.println("Number of elements in the queue = " 
                                                + queue.size());
        // Printing the elements
        System.out.println("Queue : " + queue);
    }
}
Producción:

Number of elements in the queue = 5
Queue : [A, B, C, D, E]

Referencia : https://docs.oracle.com/javase/7/docs/api/java/util/concurrent/LinkedTransferQueue.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

Deja una respuesta

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