Java中的 BitSet size() 方法及示例
Java中BitSet类的size()方法就是用来知道这个BitSet的大小的。这个大小等于 BitSet 中每个元素占用的位数。集合中的最大元素是大小——第一个元素
句法:
BitSet.hashCode()
参数:该方法不接受任何参数。
返回值:该方法返回 BitSet 中存在的位数。
以下程序用于说明 BitSet.size() 方法的工作原理:
方案一:
// Java code to illustrate size()
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 size
System.out.println("The size is: "
+ init_bitset.size());
}
}
输出:
BitSet: {25, 31, 40, 53, 100}
The size is: 128
方案二:
// Java code to illustrate size()
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 s iizes: "
+ init_bitset.size());
}
}
输出:
BitSet: {}
The size is: 64
方案 3:
// Java code to illustrate size()
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(400);
// Displaying the BitSet
System.out.println("BitSet: " + init_bitset);
// Displaying the hashcode
System.out.println("The sizeis: " + init_bitset.size());
}
}
输出:
BitSet: {400}
The size is: 448