當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Long numberOfTrailingZeros()用法及代碼示例


Long類numberOfTrailingZeros()方法

  • numberOfTrailingZeros() 方法可在java.lang包。
  • numberOfTrailingZeros() 方法用於返回 long 類型的給定參數 [value] 的 2 的補碼表示中最右邊的一位之後的 0 位數。
  • numberOfTrailingZeros() 方法是一個靜態方法,它也可以通過類名訪問,如果我們嘗試使用類對象訪問該方法,那麽我們也不會收到錯誤。
  • numberOfTrailingZeros() 方法在尾隨零時不拋出異常。

用法:

    public static int numberOfTrailingZeros (long value);

參數:

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

返回值:

這個方法的返回類型是int,它返回基於以下情況的整數值,

  • 如果給定的參數不為零,則它返回給定 long 值的 2 的補碼中最右邊的一位之後的 0 位的數量。
  • 否則,如果給定的參數為零,則它返回值 64,因為它在給定參數的 2 的補碼中沒有 1 的位。

例:

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

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

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

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

        // It returns the number of 0's bits following the leftmost side 
        // one bit in the given argument 'value' by calling 
        // Long.numberOfTrailingZeros(value1)

        System.out.println("Long.numberOfTrailingZeros(value1):" + Long.numberOfTrailingZeros(value1));

        // It returns the value 64 because the value of the given argument is zero 
        System.out.println("Long.numberOfTrailingZeros(value2):" + Long.numberOfTrailingZeros(value2));
    }
}

輸出

Long.toBinaryString(value1):10100010000
Long.toBinaryString(value2):0
Long.numberOfTrailingZeros(value1):4
Long.numberOfTrailingZeros(value2):64


相關用法


注:本文由純淨天空篩選整理自Preeti Jain大神的英文原創作品 Java Long class numberOfTrailingZeros() method with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。