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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。