java.lang.Integer.toOctalString()方法實例
java.lang.Integer.toOctalString() 方法返回一個整數參數的作為以8為基數下列字符的無符號整數的字符串表示形式作為八進製數字:01234567
聲明
以下是java.lang.Integer.toOctalString()方法的聲明
public static String toOctalString(int i)
參數
-
i -- 這是要轉換為字符串的整數。
返回值
此方法返回由八進製的參數(基數8)表示的無符號整型值的字符串表示形式。
異常
-
NA
例子
下麵的例子顯示java.lang.Integer.toOctalString()方法的使用。
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 octal (base 8) */ System.out.println("Octal = " + Integer.toOctalString(i)); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
Number = 170 Octal = 252