当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Long bitCount()用法及代码示例


Long类bitCount()方法

  • bitCount() 方法可在java.lang包。
  • bitCount() 方法用于在给定的 long 类型参数 [value] 的 2 的补码二进制表示中找到 1 的位数。
  • bitCount() 方法是一个静态方法,它也可以通过类名访问,如果我们尝试使用类对象访问该方法,那么我们也不会收到错误。
  • bitCount() 方法在计数位时不抛出异常。

用法:

    public static int bitCount(long value);

参数:

  • long value– 表示要解析的long值。

返回值:

这个方法的返回类型是int,它返回给定 long 值的 2 的补码中 1 的位数。

例:

// Java program to demonstrate the example 
// of bitCount(long value) method of Long class

public class BitCountOfLongClass {
    public static void main(String[] args) {
        long value = 1296;

        // It returns the string representation of the given unsigned 
        // long value denoted by the argument in binary by calling
        // Long.toBinaryString(value)
        System.out.println("Long.toBinaryString(value):" + Long.toBinaryString(value));

        // It returns the number of 1's bits in 2's complement 
        // of the given argument 'value' by calling Long.bitCount(value)
        System.out.println("Long.bitCount(value):" + Long.bitCount(value));
    }
}

输出

Long.toBinaryString(value):10100010000
Long.bitCount(value):3


相关用法


注:本文由纯净天空筛选整理自Preeti Jain大神的英文原创作品 Java Long class bitCount() method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。