Java中Integer.parse()的学习总结
来源: 阅读:3664 次 日期:2015-04-10 14:48:56
温馨提示: 小编为您整理了“Java中Integer.parse()的学习总结”,方便广大网友查阅!

内部使用负数表示

当函数还未考虑到符号影响时候,内部是用负数来表示逐步转换的结果。

初看到下面两句,很是疑惑。

int max = Integer.MIN_VALUE / radix;

int next = result * radix - digit;

为什么要用负数来表示呢?正数才比较符号平常头脑的思路。

我的想法是,负数部分是0~-2147483648,而正数部分是0~2147483647,负数范围比正数范围广。如果内部是用正数的话,"-2147483648"这个字符串处理就更复杂点,因为正数没法表示2147483648。

其他的理解放在下面代码注释中:

private static int parse(String string, int offset, int radix, boolean negative) throws NumberFormatException {

// Why is Integer.MIN_VALUE is choosed? Not Integer.MAX_VALUE ?

// Maybe because the range in the minus side is greater than that in the plus side

int max = Integer.MIN_VALUE / radix;

int result = 0;

int length = string.length();

while (offset < length) {

int digit = Character.digit(string.charAt(offset++), radix);

if (digit == -1) {

throw invalidInt(string);

}

//如果此时的result的绝对值已经大于max的绝对值,那么result再增加一位必超出范围。

//int max = Integer.MIN_VALUE / radix; 这是max定义。

if (max > result) {

throw invalidInt(string);

}

int next = result * radix - digit;

//可能出现overflow的现象。

//如:如果radix为10,上面result等于-214748364,又digit大于8,则next会超出范围。

if (next > result) {

throw invalidInt(string);

}

result = next;

}

if (!negative) {

result = -result;

// when result equals to 80000000H, -result equals to result.

if (result < 0) {

throw invalidInt(string);

}

}

return result;

}

更多信息请查看IT技术专栏

更多信息请查看网络编程
由于各方面情况的不断调整与变化, 提供的所有考试信息和咨询回复仅供参考,敬请考生以权威部门公布的正式信息和咨询为准!

2025国考·省考课程试听报名

  • 报班类型
  • 姓名
  • 手机号
  • 验证码
关于我们 | 联系我们 | 人才招聘 | 网站声明 | 网站帮助 | 非正式的简要咨询 | 简要咨询须知 | 加入群交流 | 手机站点 | 投诉建议
工业和信息化部备案号:滇ICP备2023014141号-1 云南省教育厅备案号:云教ICP备0901021 滇公网安备53010202001879号 人力资源服务许可证:(云)人服证字(2023)第0102001523号
云南网警备案专用图标
联系电话:0871-65317125(9:00—18:00) 获取招聘考试信息及咨询关注公众号:hfpxwx
咨询QQ:526150442(9:00—18:00)版权所有:
云南网警报警专用图标
Baidu
map