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