Java中的 BigInteger bitCount() 方法
先决条件:BigInteger 基础知识
Java.math.BigInteger.bitCount()方法返回此 BigInteger 的二进制补码表示中与其符号位不同的位数。在 BigInteger 上实现位向量样式集时,此方法很有用。
句法:
public int bitCount()
参数:该方法不带任何参数。
返回值:该方法用于返回此 BigInteger 的二进制补码表示中与其符号位不同的位数。
例子:
Input: value = 2300
Output: 7
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 = 7
Input: value = 5482549
Output: 11
下面的程序说明了 BigInteger 的 bitCount() 方法。
Java
/*
*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: Java/math/BigInteger.html#bitCount()