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


Java Java.lang.Integer.lowestOneBit()用法及代碼示例



描述

這個java.lang.Integer.lowestOneBit() 方法返回一個最多隻有一個 one-bit 的 int 值,位於指定 int 值中最低階 ("rightmost") one-bit 的位置。如果指定值的二進製補碼表示中沒有 one-bits,即如果它等於零,則返回零。

聲明

以下是聲明java.lang.Integer.lowestOneBit()方法

public static int lowestOneBit(int i)

參數

i─ 這是 int 值。

返回值

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

異常

NA

示例

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

package com.tutorialspoint;

import java.lang.*;

public class IntegerDemo {

   public static void main(String[] args) {

      int i = 170;
      System.out.println("Number = " + i);
    
      /* returns the string representation of the unsigned integer value 
         represented by the argument in binary (base 2) */
      System.out.println("Binary = " + Integer.toBinaryString(i));

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

      /* returns an int 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 = " + Integer.highestOneBit(i));

      /* returns an int 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 = " + Integer.lowestOneBit(i));
   }
}

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

Number = 170
Binary = 10101010
Number of one bits = 4
Highest one bit = 128
Lowest one bit = 2

相關用法


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