先决条件:BigInteger基础
的java.math.BigInteger.bitCount()方法返回此BigInteger的二进制补码表示形式中不同于其符号位的位数。在BigIntegers顶部实现bit-vector样式集时,此方法很有用。
用法:
public int bitCount()
参数:该方法不带任何参数。
返回值:该方法用于返回此BigInteger的二进制补码表示形式中不同于其符号位的位数。
例子:
Input: value = 2300 Output: 8 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 = 8 Input: value = 5482549 Output: 11
以下示例程序旨在说明BigInteger的bitCount()方法。
/*
*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://docs.oracle.com/javase/7/docs/api/java/math/BigInteger.html#bitCount()
相关用法
- Java Integer bitCount()用法及代码示例
- Java BigInteger or()用法及代码示例
- Java BigInteger not()用法及代码示例
- Java BigInteger xor()用法及代码示例
- Java BigInteger and()用法及代码示例
- Java BigInteger pow()用法及代码示例
- Java BigInteger abs()用法及代码示例
- Java BigInteger mod()用法及代码示例
- Java BigInteger doubleValue()用法及代码示例
- Java BigInteger longValue()用法及代码示例
- Java BigInteger intValue()用法及代码示例
- Java BigInteger floatValue()用法及代码示例
- Java BigInteger modPow()用法及代码示例
- Java BigInteger shiftRight()用法及代码示例
- Java BigInteger sqrt()用法及代码示例
注:本文由纯净天空筛选整理自AmanSingh2210大神的英文原创作品 BigInteger bitCount() Method in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。