Método ConcurrentLinkedDeque hashCode() en Java con ejemplo

El método hashCode() de ConcurrentLinkedDeque en Java se usa para obtener el valor de hashCode para esta instancia de ConcurrentLinkedDeque. Devuelve un valor entero que es el valor hashCode para esta instancia de ConcurrentLinkedDeque.

Sintaxis:

public int hashCode()

Parámetros: Esta función no tiene parámetros.

Valor devuelto: el método devuelve un valor entero que es el valor hashCode para esta instancia de ConcurrentLinkedDeque.

Los siguientes programas ilustran el método ConcurrentLinkedDeque.hashCode():

Programa 1:

// Java Program Demonstrate hashCode()
// method of ConcurrentLinkedDeque
  
import java.util.concurrent.ConcurrentLinkedDeque;
import java.util.*;
  
public class GFG {
    public static void main(String[] args)
        throws IllegalStateException
    {
  
        // create object of ConcurrentLinkedDeque
        ConcurrentLinkedDeque<Integer> CLD
            = new ConcurrentLinkedDeque<Integer>();
  
        // Add numbers to end of ConcurrentLinkedDeque
        CLD.add(7855642);
        CLD.add(35658786);
        CLD.add(5278367);
        CLD.add(74381793);
  
        System.out.println("Linked Blocking Deque: " + CLD);
  
        // Get the hashCode value
        // using hashCode() value
        System.out.println("HashCode value: "
                           + CLD.hashCode());
    }
}
Producción:

Linked Blocking Deque: [7855642, 35658786, 5278367, 74381793]
HashCode value: 2101973421

Programa 2:

// Java Program Demonstrate hashCode()
// method of ConcurrentLinkedDeque
// when the list contains characters
  
import java.util.concurrent.ConcurrentLinkedDeque;
import java.util.*;
  
public class GFG {
    public static void main(String[] args)
        throws IllegalStateException
    {
  
        // create object of ConcurrentLinkedDeque
        ConcurrentLinkedDeque<String> CLD
            = new ConcurrentLinkedDeque<String>();
  
        // Add numbers to end of ConcurrentLinkedDeque
        CLD.add("1");
        CLD.add("2");
        CLD.add("3");
        CLD.add("4");
  
        System.out.println("Linked Blocking Deque: " + CLD);
  
        // Get the hashCode value
        // using hashCode() value
        System.out.println("HashCode value: "
                           + CLD.hashCode());
    }
}
Producción:

Linked Blocking Deque: [1, 2, 3, 4]
HashCode value: 2101973421

Publicación traducida automáticamente

Artículo escrito por Code_r 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 *