Java中的 BitSet toString() 方法及示例
Java.util.BitSet.toString() 是 BitSet 类的一个内置方法,用于以由“,”分隔的一组条目的形式获取集合位的字符串表示。所以基本上 toString() 方法用于将 BitSet 的所有元素转换为 String。除此之外,对于处于设置状态的位的每个索引,该索引的十进制表示也包含在结果中。
句法:
Bit_Set.toString()
参数:该方法不带任何参数。
返回值:该方法返回由给定 BitSet 的元素的字符串表示形式组成的集合。
下面的程序说明了Java.util.BitSet.toString() 方法的工作:
方案一:
// 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}
方案二:
// 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}