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