Java 快速導覽 - Integer 的 toString()

Integer 類別有 toString() 方法,可以將整數物件 (object) 轉換字串 (string) ,或是直接將 int 整數轉換成字串

方法描述
String toString()轉換成字串
static String toString(int i)轉換成字串


舉例如下
class ToStringDemo {
    public static void main(String[] args) {
        Integer i1 = 22;
        String s1 = i1.toString(); 
        System.out.println(s1);
        
        String s2 = Integer.toString(33);
        System.out.println(s2);
    }
}

/* 《程式語言教學誌》的範例程式
    http://pydoing.blogspot.com/
    檔名:ToStringDemo.java
    功能:示範物件導向的基本觀念 
    作者:張凱慶
    時間:西元 2010 年 10 月 */


編譯後執行,結果如下



其中,第 4 行
String s1 = i1.toString();


i1 為 Integer 型態的物件,這是將此物件以 toString() 方法回傳包含此物件數值的字串。


第 7 行
String s2 = Integer.toString(33);


這是利用 Integer 類別中 static 的 toString() 方法,直接將 int 型態的整數 33 轉換成字串。


中英文術語對照
物件object
字串string






沒有留言: