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


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


Long类highestOneBit()方法

  • highestOneBit() 方法可在java.lang包。
  • highestOneBit() 方法用于在给定的 long 类型参数 [value] 的最高阶路径中从最左侧一位开始最多仅查找单个 1 位。
  • highestOneBit() 方法是一个静态方法,它也可以通过类名访问,如果我们尝试使用类对象访问该方法,那么我们也不会收到错误。
  • highestOneBit() 方法在确定单个数字的最高位时不抛出异常。

用法:

    public static long highestOneBit (long value);

参数:

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

返回值:

这个方法的返回类型是long,它根据以下情况返回long值,

  • 如果给定的参数不为零,则它最多只返回给定 long 值的最左侧一位的路径中的单个 1 位。
  • 否则,如果给定的参数为零,则返回值 0。

例:

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

public class HighestOneBitOfLongClass {
    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 with atmost 1's bits in the path of leftmost side 
        // one bit in the given argument 'value' by calling Long.highestOneBit(value)
        System.out.println("Long.highestOneBit(value):" + Long.highestOneBit(value));
    }
}

输出

Long.toBinaryString(value):10100010000
Long.highestOneBit(value):1024


相关用法


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