Java Integer valueOf()方法
java.lang.Integer.valueOf(String s) 方法返回一个Integer对象持有的指定字符串s的值。
1 语法
public static Integer valueOf(String s) throws NumberFormatException
2 参数
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 = "5";
// returns a Integer instance representing the specified string
System.out.println("Value = " + i.valueOf(str));
}
}
输出结果为:
Value = 5
热门文章
优秀文章