java中tostring方法的使用方法:tostring()方法用于返回以一個字符串表示的number對象值。語法格式:【string tostring(int i)】,返回表示指定int的string對象。
簡介
(推薦教程:java入門程序)
tostring() 方法用于返回以一個字符串表示的 number 對象值。
如果方法使用了原生的數據類型作為參數,返回原生數據類型的 string 對象值。如果方法有兩個參數, 返回用第二個參數指定基數表示的第一個參數的字符串表示形式。
語法
以 string 類為例,該方法有以下幾種語法格式:
string tostring()static string tostring(int i)參數
i — 要轉換的整數。
返回值
tostring(): 返回表示 integer 值的 string 對象。
tostring(int i): 返回表示指定 int 的 string 對象。
(視頻教程推薦:java視頻教程)
實例
public class test{ public static void main(string args[]){ integer x = 5; system.out.println(x.tostring()); system.out.println(integer.tostring(12)); }}編譯以上程序,輸出結果為:
512