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


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


java.lang包的Integer類的bitCount()方法以整數值的二進製補碼表示形式返回one-bits的數量計數。有時將此函數稱為人口計數。

用法:

public static int bitCount(int n)
參數:
n: the value whose bits are to be counted
返回:
This method returns the count of the number of one-bits in the two's complement 
binary representation of an int value.

例:展示java.lang.Integer.bitCount()方法的用法。


// Java program to demonstrate working 
// of java.lang.Integer.bitCount() method 
import java.lang.Integer; 
  
class Gfg { 
    // driver code 
    public static void main(String args[]) 
    { 
        int a = 10; 
  
        // Convert integer number to binary  format 
        System.out.println(Integer.toBinaryString(a)); 
  
        // to print number of 1's in the number a 
        System.out.println(Integer.bitCount(a)); 
    } 
}

輸出:

1010
2


相關用法


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