Java 程序显示整数中的位操作
假如我们有一个十进制数字,其二进制为 100100110。
int dec = 294;
为了执行位操作,我们要计算其中的 1 位的数量。为此,我们使用了 bitCount() 方法。
Integer.bitCount(dec);
以下是显示给定整数中位操作的一个示例。
示例
public class Demo { public static void main(String []args) { // binary 100100110 int dec = 294; System.out.println("Count of one bits = " + Integer.bitCount(dec)); } }
输出
Count of one bits = 4
广告