当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java BitSet length()用法及代码示例


Java中的BitSet类的length()方法用于了解此BitSet的逻辑大小。此逻辑大小等于BitSet的最高位加1。

用法:

BitSet.hashCode()

参数:该方法不接受任何参数。


返回值:该方法返回BitSet的逻辑大小,该大小等于集合的最高位加一。如果BitSet为空,则该方法返回零。

下面的程序用于说明BitSet.length()方法的用法:
示例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()); 
    } 
}
输出:
BitSet: {25, 31, 40, 53, 100}
The Length is: 101

示例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()); 
    } 
}
输出:
BitSet: {}
The Length is: 0


相关用法


注:本文由纯净天空筛选整理自Chinmoy Lenka大神的英文原创作品 BitSet length() Method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。