-1

当我使用

   String s = "12";      
   int n = Integer.parseInt(s);

这给出n了 12 的值。这对我来说很好。

它在内部做什么。这里运行的内部进程是什么。有人可以解释一下吗?字符串如何真正转换为整数。在投反对票之前,请给我理由。下次我会纠正我的错误。我搜索了这个问题。但我没有找到答案。

提前致谢。

4

4 回答 4

0

查看的内部代码Integer.parseInt(),例如在第 444 行。

但最简单的方法是,如果您将src.zipJava 安装中的文件作为源附加到您最喜欢的编辑器(例如 Eclipse)中Integer.class- 这样您将获得实际的实现。

于 2013-04-09T12:19:16.793 回答
0

嗨,这是 parseInt 方法的实际实现,请通过::

    public static int parseInt(String s) throws NumberFormatException {
         return parseInt(s,10);
    }

    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;
    }
    }
于 2013-04-09T12:19:30.253 回答
0

在这篇文章中:它是如何工作的 ,它很好地展示了它是如何工作的。看完你应该能正确理解

于 2013-04-09T12:24:06.587 回答
0

我建议将源代码附加到您喜欢的 IDE 中,当您需要某些东西时,您只需要跳转到任何库的源代码即可。最好的方法是使用 IntelliJ IDEA 并创建空的 Maven 模块。然后在进入方法实现之后,您将被要求下载源代码......快速而简单。

于 2013-04-09T12:26:56.873 回答