Java Integer valueOf()方法
java.lang.Integer.valueOf(String s, int radix) 方法返回一个Integer对象从指定提取String 的值s当第二个参数基数给出的基数进行分析。
1 语法
public static Integer valueOf(String s, int radix) throws NumberFormatException
2 参数
s :这是要被解析的字符串。
radix: 这是解释s至使用的进制。
3 返回值
此方法返回一个Integer对象持有指定基数的字符串参数表示的值。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* Java Integer valueOf()方法
*/
import java.lang.*;
public class IntegerDemo {
public static void main(String[] args) {
Integer i = new Integer(30);
String str = "50";
/* returns a Integer instance representing the specified
string with radix 10 */
System.out.println("Value = " + i.valueOf(str, 10));
}
}
输出结果为:
Value = 50
热门文章
优秀文章