java.util.BitSet.toString() es un método incorporado de la clase BitSet que se utiliza para obtener una representación de string de los bits de los conjuntos en forma de un conjunto de entradas separadas por “,“. Básicamente, el método toString() se usa para convertir todos los elementos de BitSet en String. Además de esto, para cada índice de los bits en el estado establecido, la representación decimal de ese índice también se incluye en el resultado.
Sintaxis:
Bit_Set.toString()
Parámetro: El método no toma ningún parámetro.
Valor de retorno: el método devuelve el conjunto que consiste en la representación de string de los elementos del BitSet dado.
Los siguientes programas ilustran el funcionamiento del método java.util.BitSet.toString():
Programa 1:
// Java code to illustrate toString() 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 toString() working System.out.println("The String representation: " + init_bitset.toString()); } }
BitSet: {25, 31, 40, 53, 100} The String representation: {25, 31, 40, 53, 100}
Programa 2:
// Java code to illustrate toString() 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 toString() working System.out.println("The String representation: " + init_bitset.toString()); } }
BitSet: {10, 20, 30, 40, 50} The String representation: {10, 20, 30, 40, 50}
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