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


Java Integer numberOfLeadingZeros()用法及代码示例


Integer类numberOfLeadingZeros()方法

  • numberOfLeadingZeros() 方法可在java.lang包。
  • numberOfLeadingZeros() 方法用于返回整数类型的给定参数 [value] 的 2 的补码中最左边一位之前的 0 位数。否则,如果给定的参数值为 0,则返回 32。
  • numberOfLeadingZeros() 方法是一个静态方法,它也可以通过类名访问,如果我们尝试使用类对象访问该方法,那么我们也不会收到错误。
  • numberOfLeadingZeros() 方法不抛出异常。

用法:

    public static int numberOfLeadingZeros (int value);

参数:

  • int value– 表示要解析的整数值。

返回值:

这个方法的返回类型是int, 如果给定的参数不为零,则返回给定 int 值最左边一位之前的 0 位的数量。否则,如果给定的参数为零,则返回值 32。

例:

// Java program to demonstrate the example 
// of numberOfLeadingZeros (int value) method of Integer class

public class NumberOfLeadingZerosOfIntegerClass {
    public static void main(String[] args) {
        int value1 = 1296;
        int value2 = 0;

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

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


        // It returns the number of 0's bits preceding the leftmost side 
        // one bit in the given argument 'value' by calling 
        // Integer.numberOfLeadingZeros(value1)
        System.out.println("Integer.numberOfLeadingZeros(value1):" + Integer.numberOfLeadingZeros(value1));

        // It returns the value 32 because the value of 
        // the given argument is zero 
        System.out.println("Integer.numberOfLeadingZeros(value2):" + Integer.numberOfLeadingZeros(value2));
    }
}

输出

Integer.toBinaryString(value1):10100010000
Integer.toBinaryString(value2):0
Integer.numberOfLeadingZeros(value1):21
Integer.numberOfLeadingZeros(value2):32


相关用法


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