java.lang.Integer.toString(int i, int radix)方法實例
java.lang.Integer.toString(int i, int radix) 方法返回第一個參數i以第二個參數指定的基數radix的字符串表示形式。如果radix比Character.MIN_RADIX比Character.MAX_RADIX更小或更大,那麼基數10來代替。
下麵的ASCII字符被用作數字: 0123456789abcdefghijklmnopqrstuvwxyz
聲明
以下是java.lang.Integer.toString()方法的聲明
public static String toString(int i, int radix)
參數
-
i -- 這是一個要轉換的整數。
-
radix -- 這是字符串使用基數的表示形式。
返回值
此方法返回指定基數的參數的字符串表示形式。
異常
-
NA
例子
下麵的例子顯示java.lang.Integer.toString()方法的使用。
package com.yiibai; import java.lang.*; public class IntegerDemo { public static void main(String[] args) { Integer i = new Integer(10); // returns a string representation of the specified integer with radix 10 String retval = i.toString(30, 10); System.out.println("Value = " + retval); // returns a string representation of the specified integer with radix 16 retval = i.toString(30, 16); System.out.println("Value = " + retval); // returns a string representation of the specified integer with radix 8 retval = i.toString(30, 8); System.out.println("Value = " + retval); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
Value = 30 Value = 1e Value = 36