位置:首頁 > Java技術 > java.lang > java.lang.Integer.toBinaryString()方法實例

java.lang.Integer.toBinaryString()方法實例

java.lang.Integer.toBinaryString() 方法返回一個整數參數作為基數2的無符號整數的字符串表示形式。

聲明

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

public static String toBinaryString(int i)

參數

  • i -- 這是一個整數要轉換為一個字符串。

返回值

此方法返回由二進製(基數2)參數表示的無符號整型值的字符串表示形式。

異常

  • NA

例子

下麵的例子顯示java.lang.Integer.toBinaryString()方法的使用。

package com.yiibai;

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 is " + Integer.toBinaryString(i));

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

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

Number = 170
Binary is 10101010
Number of one bits = 4