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


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



描述

這個java.lang.Long.numberOfLeadingZeros() 方法返回指定 long 值的二進製補碼表示中 highest-order ("leftmost") one-bit 之前的零位數。如果指定值在其二進製補碼表示中沒有 one-bits,即如果它等於 0,則返回 64。

聲明

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

public static int numberOfLeadingZeros(long i)

參數

i─ 這是長期價值。

返回值

此方法返回指定 long 值的二進製補碼表示中 highest-order ("leftmost") one-bit 之前的零位數,如果該值等於零,則返回 64。

異常

NA

示例

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

package com.tutorialspoint;

import java.lang.*;

public class LongDemo {

   public static void main(String[] args) {

      long l = 210;
      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 a long value with at most a single one-bit, in the position
         of the lowest-order ("rightmost") one-bit in the specified int value.*/
      System.out.println("Lowest one bit = " + Long.lowestOneBit(l));

      /*returns the number of zero bits preceding the highest-order 
         ("leftmost")one-bit */
      System.out.print("Number of leading zeros = ");
      System.out.println(Long.numberOfLeadingZeros(l));
   }
}

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

Number = 210
Binary = 11010010
Lowest one bit = 2
Number of leading zeros = 56

相關用法


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