Java - Integer highestOneBit() 方法



描述

Java Integer highestOneBit() 方法返回一个 int 值,该值最多只有一个比特位为 1,位于指定 int 值中最高位(“最左边”)的 1 比特位的位置。如果指定值在其二进制补码表示中没有 1 比特位,即如果它等于零,则返回零。

声明

以下是 java.lang.Integer.highestOneBit() 方法的声明

public static int highestOneBit(int i)

参数

i − 这是 int 值。

返回值

此方法返回一个 int 值,该值只有一个比特位为 1,位于指定值中最高位 1 比特位的位置,或者如果指定值本身等于零,则返回零。

异常

从正整数中获取最左边 1 比特位的示例

以下示例演示了如何使用 Integer highestOneBit() 方法获取一个 int 值,该值最多只有一个比特位为 1,位于最高位。我们创建了一个 int 变量并为其分配了一个正整数。然后使用 toBinaryString() 方法,我们打印该值的二进制格式。使用 bitCount(),我们打印 1 比特位的数量,然后使用 highestOneBit() 方法打印最高位 1 比特位的值。

package com.tutorialspoint;

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));
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

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

从负整数中获取最左边 1 比特位的示例

以下示例演示了如何使用 Integer highestOneBit() 方法获取一个 int 值,该值最多只有一个比特位为 1,位于最高位。我们创建了一个 int 变量并为其分配了一个负整数。然后使用 toBinaryString() 方法,我们打印该值的二进制格式。使用 bitCount(),我们打印 1 比特位的数量,然后使用 highestOneBit() 方法打印最高位 1 比特位的值。

package com.tutorialspoint;

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));
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

Number = -170
Binary = 11111111111111111111111101010110
Number of one bits = 28
Highest one bit = -2147483648

从正零值中获取最左边 1 比特位的示例

以下示例演示了如何使用 Integer highestOneBit() 方法获取一个 int 值,该值最多只有一个比特位为 1,位于最高位。我们创建了一个 int 变量并为其分配了一个正整数。然后使用 toBinaryString() 方法,我们打印该值的二进制格式。使用 bitCount(),我们打印 1 比特位的数量,然后使用 highestOneBit() 方法打印最高位 1 比特位的值。

package com.tutorialspoint;
public class IntegerDemo {
   public static void main(String[] args) {
      int i = 0;
      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));
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

Number = 0
Binary = 0
Number of one bits = 0
Highest one bit = 0
java_lang_integer.htm
广告