gpt4 book ai didi

java - 如何知道哪个变量是 try block 中的罪魁祸首?

转载 作者:IT老高 更新时间:2023-10-28 20:44:46 25 4
gpt4 key购买 nike

在某个 try block 中,我有两个 String 变量,当我使用 Integer.parseInt(string1)Integer.parseInt(string2)。问题是,如果我 catch 一个异常,如何知道哪个字符串是麻烦制造者?我需要得到麻烦制造者的变量名。

下面是一些示例代码:

public class test {
public static void main(String[] args) {
try {
String string1 = "fdsa";
String string2 = "fbbbb";
Integer.parseInt(string1);
Integer.parseInt(string2);
} catch (NumberFormatException e) {
e.printStackTrace();
}
}
}

e.printStackTrace() 方法并没有告诉我变量名;它只是告诉我麻烦制造者的内容。

java.lang.NumberFormatException: For input string: "fdsa" at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65) at java.lang.Integer.parseInt(Integer.java:580) at java.lang.Integer.parseInt(Integer.java:615) at test.main(test.java:9) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at com.intellij.rt.execution.application.AppMain.main(AppMain.java:147)

Process finished with exit code 0

我需要知道变量名的原因是我需要提示用户发生了什么。例如,告诉用户 string1 是错误的使用

System.out.println(troubleMakerName + "is wrong!")

在我的要求中,用户应该输入

fd=(fileName,maxLength,minLength)

然后我将分析输入字符串并创建一些响应。所以我想检查一下 maxLengthminLength 是否会抛出 NumberFormatException。在这种情况下,如果minLength有问题,那么我需要提示用户minLength错误。

最佳答案

你有一个 XY-Problem .

您不想读取实际的变量名称。您希望能够验证输入并向您的用户提供合理的错误消息。

String fileName, maxLengthInput, minLengthInput;
int maxLength, minLength;

List<String> errors = new ArrayList<>();

try {
maxLength = Integer.parseInt(maxlengthInput);
} catch (NumberFormatException nfe) {
errors.add("Invalid input for maximum length, input is not a number");
}

try {
minLength = Integer.parseInt(minlengthInput);
} catch (NumberFormatException nfe) {
errors.add("Invalid input for minimum length, input is not a number");
}

// show all error strings to the user

不直接抛出异常而是收集它们允许您一次通知用户所有无效输入(可能用红色突出显示相关字段)而不是让他们修复一个输入,尝试再次提交,然后查看另一个输入也是错误的。

您可以使用包含相关字段等信息的自己的数据结构来代替字符串,但这很快就会超出范围。主要思想是:使用两个try-catch block ,你可以区分哪个字段是错误的。

如果涉及更多输入,您可以将其重构为循环。

关于java - 如何知道哪个变量是 try block 中的罪魁祸首?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38630111/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com