描述
这个java.lang.Integer.bitCount() 方法返回指定 int 值的二进制补码表示形式中 one-bits 的个数i.这有时称为人口计数。
声明
以下是声明java.lang.Integer.bitCount()方法
public static int bitCount(int i)
参数
i─ 这是 int 值。
返回值
此方法返回指定 int 值的二进制补码表示形式中 one-bits 的数量。
异常
NA
示例
下面的例子展示了 java.lang.Integer.bitCount() 方法的用法。
package com.tutorialspoint;
import java.lang.*;
public class IntegerDemo {
public static void main(String[] args) {
int i = 177;
System.out.println("Number = " + i);
/* returns the string representation of the unsigned integer value
represented by the argument in binary (base 2) */
System.out.println("Binary = " + Integer.toBinaryString(i));
// returns the number of one-bits
System.out.println("Number of one bits = " + Integer.bitCount(i));
}
}
让我们编译并运行上面的程序,这将产生以下结果——
Number = 177 Binary = 10110001 Number of one bits = 4
相关用法
- Java Java.lang.Integer.byteValue()用法及代码示例
- Java Java.lang.Integer.toHexString()用法及代码示例
- Java Java.lang.Integer.rotateRight()用法及代码示例
- Java Java.lang.Integer.reverseBytes()用法及代码示例
- Java Java.lang.Integer.compareTo()用法及代码示例
- Java Java.lang.Integer.decode()用法及代码示例
- Java Java.lang.Integer.numberOfTrailingZeros()用法及代码示例
- Java Java.lang.Integer.reverse()用法及代码示例
- Java Java.lang.Integer.equals()用法及代码示例
- Java Java.lang.Integer.floatValue()用法及代码示例
- Java Java.lang.Integer.toBinaryString()用法及代码示例
- Java Java.lang.Integer.longValue()用法及代码示例
- Java Java.lang.Integer.toString()用法及代码示例
- Java Java.lang.Integer.valueOf()用法及代码示例
- Java Java.lang.Integer.signum()用法及代码示例
- Java Java.lang.Integer.getInteger()用法及代码示例
- Java Java.lang.Integer.lowestOneBit()用法及代码示例
- Java Java.lang.Integer.hashCode()用法及代码示例
- Java Java.lang.Integer.doubleValue()用法及代码示例
- Java Java.lang.Integer.toOctalString()用法及代码示例
注:本文由纯净天空筛选整理自 Java.lang.Integer.bitCount() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。