Método BitSet hashCode en Java con ejemplos

El método hashCode() de la clase BitSet en Java se usa para obtener el valor del código hash de un BitSet en particular. Este valor de códigos hash devuelto depende de los bits establecidos del conjunto de bits que se pasa.

Sintaxis:

BitSet.hashCode()

Parámetros: El método no acepta ningún parámetro.

Valor devuelto: el método devuelve el valor del código hash del BitSet.

Los siguientes programas se utilizan para ilustrar el funcionamiento del método BitSet.hashCode():
Programa 1:

// Java code to illustrate HashCode()
import java.util.*;
  
public class BitSet_Demo {
    public static void main(String args[])
    {
        // Creating an empty BitSet
        BitSet init_bitset = new BitSet();
  
        // Use set() method to add elements into the Set
        init_bitset.set(10);
        init_bitset.set(20);
        init_bitset.set(30);
        init_bitset.set(40);
        init_bitset.set(50);
  
        // Displaying the BitSet
        System.out.println("BitSet: " + init_bitset);
  
        // Displaying the hashcode
        System.out.println("The HashCode: "
                           + init_bitset.hashCode());
    }
}
Producción:

BitSet: {10, 20, 30, 40, 50}
The HashCode: 1075053010

Programa 2:

// Java code to illustrate HashCode()
import java.util.*;
  
public class BitSet_Demo {
    public static void main(String args[])
    {
        // Creating an empty BitSet
        BitSet init_bitset = new BitSet();
  
        // Use set() method to add elements into the Set
        init_bitset.set(40);
        init_bitset.set(25);
        init_bitset.set(31);
        init_bitset.set(48);
        init_bitset.set(53);
  
        // Displaying the BitSet
        System.out.println("BitSet: " + init_bitset);
  
        // Displaying the hashcode
        System.out.println("The HashCode: "
                           + init_bitset.hashCode());
    }
}
Producción:

BitSet: {25, 31, 40, 48, 53}
The HashCode: -2111765038

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

Deja una respuesta

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