Integer 的 parseInt 和 valueOf 的区别

一、简述

String str = "1";
System.out.println(Integer.valueOf(str));//1
System.out.println(Integer.parseInt(str));//1

输出都是 1。两个方法都可以把数字类型字符串转成 int 类型整数,但是这两个方法还是有一点区别的:
valueOf(String s) 调用了 parseInt(String s, int radix),而 parseInt(String s, int radix) 返回值是一个 int 类型的值,之后又调用了 valueOf(int i) 将 int 进行了装箱返回包装类型 Integer。所以如果不需要返回包装类型,可以直接调用 parseInt(String s),效率更高。

二、valueOf(String s)的源码

可以看到调用 parseInt 的时候还传了一个 int 类型参数 radix,这个参数表示进制,默认使用十进制进行转换。下面是该方法的源码:

public static int parseInt(String s, int radix) throws NumberFormatException {
        /* 警告:在初始化IntegerCache之前,VM初始化期间可能会提前调用此方法。
         * 必须注意不要使用valueOf方法。
         * WARNING: This method may be invoked early during VM initialization
         * before IntegerCache is initialized. Care must be taken to not use
         * the valueOf method.
         */
        //字符串为空则抛出NumberFormatException
        if (s == null) {
            throw new NumberFormatException("null");
        }
        //传的进制参数小于2,抛出NumberFormatException,
        //并且提示进制小于最小进制
        if (radix < Character.MIN_RADIX) {
            throw new NumberFormatException("radix " + radix +
                    " less than Character.MIN_RADIX");
        }
        //传的进制参数大于36,抛出NumberFormatException,
        //并且提示进制大于最大进制
        if (radix > Character.MAX_RADIX) {
            throw new NumberFormatException("radix " + radix +
                    " greater than Character.MAX_RADIX");
        }
        int result = 0;
        //negative 用来判断结果是否为负数
        boolean negative = false;
        //获取字符串长度
        int i = 0, len = s.length();
        //limit = -2147483647
        int limit = -Integer.MAX_VALUE;
        //用于在添加下一位数字的前判断是否溢出的值
        int multmin;
        //需要追加的数字
        int digit;
        //字符长度大于0
        if (len > 0) {
            //判断字符串是否有符号
            char firstChar = s.charAt(0);
            if (firstChar < '0') { // Possible leading "+" or "-"
                if (firstChar == '-') {
                    //第一个符号是负号,所以结果是负数
                    negative = true;
                    limit = Integer.MIN_VALUE;
                } else if (firstChar != '+')
                    //不为负数或正数,抛出NumberFormatException
                    throw NumberFormatException.forInputString(s);
                //长度为1,抛出NumberFormatException
                if (len == 1) // Cannot have lone "+" or "-"
                    throw NumberFormatException.forInputString(s);
                i++;
            }
            //计算 multmin ,注意负数和正数的limit是不一样的,
            //负数的limit = -2147483648,正数的limit = -2147483647
            multmin = limit / radix;
            while (i < len) {
                // 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 {
            //字符不为空,但是字符长度等于0,抛出NumberFormatException
            throw NumberFormatException.forInputString(s);
        }
        //根据正负数的标识来判断结果取正还是取反
        return negative ? result : -result;
    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

JFS_Study

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值