Java Long decode()方法
java.lang.Long.decode() 方法解码一个字符串转化成一个Long。它接受十进制,十六进制和八进制数。
1 语法
public static Long decode(String nm) throws NumberFormatException
2 参数
nm :这是字符串进行解码。
3 返回值
该方法返回一个Long对象持有nm所代表的Long 值。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* Java Long decode()方法
*/
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
热门文章
优秀文章