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


Java Java.lang.Long.highestOneBit()用法及代碼示例



描述

這個java.lang.Long.highestOneBit() 方法返回一個最多隻有一個 one-bit 的 long 值,在指定的 long 值中 highest-order ("leftmost") one-bit 的位置。如果指定值的二進製補碼表示中沒有 one-bits,即如果它等於零,則返回零。

聲明

以下是聲明java.lang.Long.highestOneBit()方法

public static long highestOneBit(long i)

參數

i─ 這是長期價值。

返回值

此方法返回一個帶有單個 one-bit 的 long 值,位於指定值中 highest-order one-bit 的位置,如果指定值本身等於零,則返回零。

異常

NA

示例

下麵的例子展示了 java.lang.Long.highestOneBit() 方法的用法。

package com.tutorialspoint;

import java.lang.*;

public class LongDemo {

   public static void main(String[] args) {

      long l = 220;
      System.out.println("Number = " + l);

      /* returns the string representation of the unsigned long value 
         represented by the argument in binary (base 2) */
      System.out.println("Binary = " + Long.toBinaryString(l));

      // returns the number of one-bits 
      System.out.println("Number of one bits = " + Long.bitCount(l));

      /* returns a long value with at most a single one-bit, in the position 
         of the highest-order ("leftmost") one-bit in the specified int value */ 
      System.out.println("Highest one bit = " + Long.highestOneBit(l));
   }
}

讓我們編譯並運行上麵的程序,這將產生以下結果——

Number = 220
Binary = 11011100
Number of one bits = 5
Highest one bit = 128

相關用法


注:本文由純淨天空篩選整理自 Java.lang.Long.highestOneBit() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。