java.lang.Integer.decode()方法實例
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