-4

这是我的任务。我不知道如何实现这个方法。

实现一个 Integer parseInt(String str) 方法抛出 NumberFormatException ,它将接受输入字符串,该字符串必须只包含数字,并且不能从零开始,并返回一个数字,该数字必须从该行的转换中获得。不允许使用 Java 默认类的方法。我就是这样解决的:

公共类 Pars {

public static void main(String[] args) {
    String s = " ";
    int res = 0;

    int[] arr = new int[s.length()];
    try {
        for (int i = 0; i < s.length(); i++) {
            arr[i] = s.trim().charAt(i);
        }

        try {
            for (int i = arr.length - 1, j = 1; i >= 0; i--, j *= 10) {
                if ((arr[0] - 48) <= 0 || (arr[i] - 48) >= 10) {
                    throw new NumberFormatException();
                } else {
                    res += (arr[i] - 48) * j;
                }
            }
            System.out.println(res);
        } catch (NumberFormatException n) {
            System.out.println("Enter only numbers .");
        }

    } catch (StringIndexOutOfBoundsException str) {
        System.out.println("Don't enter a space!");
    }

}

}

4

2 回答 2

6

可以在此处找到此任务的解决方案。String将 a 解析为 an的源代码int如下所示:

public int ConvertStringToInt(String s) throws NumberFormatException
{
    int num =0;
    for(int i =0; i<s.length();i++)
    {
        if(((int)s.charAt(i)>=48)&&((int)s.charAt(i)<=57))
        {
            num = num*10+ ((int)s.charAt(i)-48);
        }
        else
        {
            throw new NumberFormatException();
        }

    }
    return num; 
}
于 2013-10-26T19:01:28.390 回答
4

这可以通过从左侧读取字符串中的每个字符来实现,这只是索引为零。

这是解决问题的一种方法。我不想提供代码,以便您有机会使用它。

set n = 0;
for(int i = 0; i < inputStr.length(); i++)
{
    find ascii value of the character;
    if the ascii value is not between 48 and 57 throw a number format exception;
    if valid substract 48 from the ascii value to get the numerical value;
    n = n * 10 + numerical value calculated in previous step;
}
于 2013-10-26T19:01:52.413 回答