Java 快速導覽 - Integer 類別的 static decode()

Integer 類別有 static decode() 方法,可以將字串 (string) 中的整數轉換成 Integer 物件 (object)

方法描述
static Integer decode(String s)將字串解碼為數字


舉例如下
class DecodeDemo {
    public static void main(String[] args) {
        String s = "22";
        Integer i = Integer.decode(s);
        
        System.out.println(i);
    }
}

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


編譯後執行,結果如下



其中,第 4 行,其為呼叫 decode() 方法的地方
Integer i = Integer.decode(s);


這樣變數 i 便會儲存 s 中所具有的整數數值。


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






沒有留言: