El método length() de la clase BitSet en Java se utiliza para conocer el tamaño lógico de este BitSet. Este tamaño lógico es igual al bit más alto del BitSet más uno.
Sintaxis:
BitSet.hashCode()
Parámetros: El método no acepta ningún parámetro.
Valor devuelto: el método devuelve el tamaño lógico del BitSet, que es igual al bit más alto del conjunto más uno. El método devuelve cero si BitSet está vacío.
Los siguientes programas se utilizan para ilustrar el funcionamiento del método BitSet.length():
Programa 1:
// Java code to illustrate length() 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(100); init_bitset.set(53); // Displaying the BitSet System.out.println("BitSet: " + init_bitset); // Displaying the length or logical size System.out.println("The Length is: " + init_bitset.length()); } }
Producción:
BitSet: {25, 31, 40, 53, 100} The Length is: 101
Programa 2:
// Java code to illustrate length() import java.util.*; public class BitSet_Demo { public static void main(String args[]) { // Creating an empty BitSet BitSet init_bitset = new BitSet(); // Displaying the BitSet System.out.println("BitSet: " + init_bitset); // Displaying the hashcode System.out.println("The Length is: " + init_bitset.length()); } }
Producción:
BitSet: {} The Length is: 0
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