java.lang.Integer.decode() 方法解碼字串轉換為整數。它接受十進位制,十六進位制和八進位制數。
以下是java.lang.Integer.decode()方法的宣告
public static Integer decode(String nm) throws NumberFormatException
nm -- 這是進行解碼的字串。
此方法返回一個Integer物件 nm表示的int值。
NumberFormatException -- 如果該串不包含一個可分析的整數。
下面的例子顯示java.lang.Integer.decode()方法的使用。
package com.yiibai; import java.lang.*; public class IntegerDemo { public static void main(String[] args) { Integer i = new Integer(10); String str = "50"; /* returns an Integer object holding the int value represented by string str */ System.out.println("Number = " + i.decode(str)); } }
讓我們來編譯和執行上面的程式,這將產生以下結果:
Number = 50