java里 Integer.parseInt()的参数具体该是哪些啊

Integer.parseInt的参数要哪些才不会出错呢?具体的这个函数是怎么翻译字符串的呢?有没有高人相助。。... Integer.parseInt的参数要哪些才不会出错呢?
具体的这个函数是怎么翻译字符串的呢?有没有高人相助。。
展开
 我来答
101页报告
推荐于2016-06-01 · TA获得超过1809个赞
知道小有建树答主
回答量:768
采纳率:69%
帮助的人:166万
展开全部
java.lang.Integer.parseInt(String s, int radix) 方法解析的字符串参数s作为一个有符号整数的基数指定的第二个参数基数。
参数
s -- 这是一个包含被解析的整数表示的字符串。
radix -- 在语法分析的基础上,这是需要使用的基数。
路人_有问
2009-11-04
知道答主
回答量:20
采纳率:0%
帮助的人:7.6万
展开全部
public static int parseInt(String s) throws NumberFormatException ,其中的s为十进制数字字符串,public static int parseInt(String s,int radix) throws NumberFormatException,其中s为数字字符串,radix为基数就是几进制。这里有几例子:parseInt("0", 10) returns 0
parseInt("473", 10) returns 473
parseInt("-0", 10) returns 0
parseInt("-FF", 16) returns -255
parseInt("1100110", 2) returns 102
parseInt("2147483647", 10) returns 2147483647
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
iampaipaipai
2009-11-04 · 超过11用户采纳过TA的回答
知道答主
回答量:36
采纳率:0%
帮助的人:0
展开全部
看源代码

public static int parseInt(String s, int radix)
throws NumberFormatException
{
if (s == null) {
throw new NumberFormatException("null");
}

if (radix < Character.MIN_RADIX) {
throw new NumberFormatException("radix " + radix +
" less than Character.MIN_RADIX");
}

if (radix > Character.MAX_RADIX) {
throw new NumberFormatException("radix " + radix +
" greater than Character.MAX_RADIX");
}

int result = 0;
boolean negative = false;
int i = 0, max = s.length();
int limit;
int multmin;
int digit;

if (max > 0) {
if (s.charAt(0) == '-') {
negative = true;
limit = Integer.MIN_VALUE;
i++;
} else {
limit = -Integer.MAX_VALUE;
}
multmin = limit / radix;
if (i < max) {
digit = Character.digit(s.charAt(i++),radix);
if (digit < 0) {
throw NumberFormatException.forInputString(s);
} else {
result = -digit;
}
}
while (i < max) {
// Accumulating negatively avoids surprises near MAX_VALUE
digit = Character.digit(s.charAt(i++),radix);
if (digit < 0) {
throw NumberFormatException.forInputString(s);
}
if (result < multmin) {
throw NumberFormatException.forInputString(s);
}
result *= radix;
if (result < limit + digit) {
throw NumberFormatException.forInputString(s);
}
result -= digit;
}
} else {
throw NumberFormatException.forInputString(s);
}
if (negative) {
if (i > 1) {
return result;
} else { /* Only got "-" */
throw NumberFormatException.forInputString(s);
}
} else {
return -result;
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
0o悠云o0
2009-11-04 · 超过16用户采纳过TA的回答
知道答主
回答量:72
采纳率:0%
帮助的人:56万
展开全部
要是纯数字的字符串,而且是在int的范围内
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
freish
2009-11-04 · TA获得超过2878个赞
知道大有可为答主
回答量:3153
采纳率:0%
帮助的人:2704万
展开全部
不是所有的字符串都可以转换的!
int num = Integer.parseInt("123");
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(5)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式