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
相关用法
- Java BigInteger bitCount()用法及代码示例
- Java Integer sum()用法及代码示例
- Java Integer signum()用法及代码示例
- Java Integer hashCode()用法及代码示例
- Java Integer shortValue()用法及代码示例
- Java Integer intValue()用法及代码示例
- Java Integer reverse()用法及代码示例
- Java Integer doubleValue()用法及代码示例
- Java Integer decode()用法及代码示例
- Java Integer reverseBytes()用法及代码示例
- Java Integer lowestOneBit()用法及代码示例
- Java Integer rotateRight()用法及代码示例
- Java Integer highestOneBit()用法及代码示例
- Java Integer compareTo()用法及代码示例
- Java Integer compareUnsigned()用法及代码示例
注:本文由纯净天空筛选整理自Niraj_Pandey大神的英文原创作品 Java Integer bitCount() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。