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