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


Java 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.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 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

相關用法


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