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


Java BigInteger bitCount()用法及代碼示例


先決條件:BigInteger基礎
java.math.BigInteger.bitCount()方法返回此BigInteger的二進製補碼表示形式中不同於其符號位的位數。在BigIntegers頂部實現bit-vector樣式集時,此方法很有用。

用法:

public int bitCount()

參數:該方法不帶任何參數。


返回值:該方法用於返回此BigInteger的二進製補碼表示形式中不同於其符號位的位數。

例子:

Input: value = 2300 
Output: 8
Explanation:
Binary signed 2's complement of 2300 = 0000100011111100
Singned bit is 0 because 2300 is positive
so no of 1 in 0000100011111100 is bitCount
So bitCount in 0000100011111100 = 8

Input: value = 5482549
Output: 11

以下示例程序旨在說明BigInteger的bitCount()方法。

/* 
*Program Demonstrate bitCount() method of BigInteger  
*/
import java.math.*; 
  
public class GFG { 
  
    public static void main(String[] args) 
    { 
  
        // Creates  BigInteger objects 
        BigInteger biginteger = new BigInteger("2300"); 
  
        // Calling bitCount() method on bigInteger 
        int count = biginteger.bitCount(); 
  
        String result = "BitCount of  " + biginteger + " is " + count; 
  
        // Print result 
        System.out.println(result); 
    } 
}
輸出:
BitCount of  2300 is 7

參考:https://docs.oracle.com/javase/7/docs/api/java/math/BigInteger.html#bitCount()



相關用法


注:本文由純淨天空篩選整理自AmanSingh2210大神的英文原創作品 BigInteger bitCount() Method in Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。