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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。