當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。