62,628
社区成员
发帖
与我相关
我的任务
分享
public static Integer valueOf(String s) throws NumberFormatException {
return new Integer(parseInt(s, 10));
}
public static int parseInt(String s) throws NumberFormatException {
return parseInt(s,10);
}