gpt4 book ai didi

java - 在 Java 中如何抛出和捕获异常?

转载 作者:行者123 更新时间:2023-12-01 12:42:49 24 4
gpt4 key购买 nike

我正在尝试学习基本java程序的异常处理。我在网上和课本上阅读,甚至练习了书上给我的练习,但我仍然没有很好地掌握它。

我希望我可以在下面发布我的代码,看看是否有人可以告诉我更好的方法来处理异常,或者我是否做得正确。

public class labBookFortyTwo {

public static void main(String[] args) {

int size = 0;

Scanner myInput = new Scanner(System.in);
System.out.println("Please enter the amount of grades there are ");
size = myInput.nextInt();

double grade = 0;

double[] myArray = new double[size];

TestScoresTwo myScore = new TestScoresTwo(myArray, size);

for (int count = 0; count < myArray.length; count++) {

System.out.println("enter grade ");

grade = myInput.nextDouble();

myArray[count] = grade;

System.out.println("you entered " + myArray[count]);

}

double avg = myScore.avgGrade();
System.out.println("avg is \t " + avg);
}

}

这是我的类(class):

public class TestScoresTwo {

int size = 0;
double[] tScore = new double[size];
double sum = 0;

public TestScoresTwo(double[] scores, int sizE) {
// double[] tScore = scores; //this line messed me up
// the below line works
tScore = scores;
size = sizE;
}

public double avgGrade() {

try {
for (int otherCount = 0; otherCount < size; otherCount++) {
if (tScore[otherCount] < 0 || tScore[otherCount] > 100) {
throw new IllegalArgumentException("At the "
+ (otherCount + 1) + " position "
+ tScore[otherCount] + " is a wrong input ");
}
}

for (int count = 0; count < tScore.length; count++) {
sum = tScore[count] + sum;
}

} catch (IllegalArgumentException e) {
System.out.println(e.getMessage());
}

double avg = sum / size;
return avg;
}
}

最佳答案

到目前为止,一个答案和一条评论告诉您“在同一个地方”抛出和捕获异常“无用”或“没有意义”。

这就是他们真正想告诉你的:如果 throw new FoobarException(...); 在词法上包含在 try {...} catch (FoobarException ex ) { ... } block ,这表明您的代码组织不良。将执行 throw 的代码移动到单独的方法中会更干净。

Robert C. Martin ( http://www.amazon.com/Clean-Code-Handbook-Software-Craftsmanship/dp/0132350882/ ) 所著的《清洁代码:...》这本优秀著作提倡单一责任原则——程序中的每个方法都应该负责的想法只做一件事。

他明确表示处理异常是一回事。因此,如果您编写一个捕获异常的方法,那么如果相应的抛出发生在该异常的其他方法中,您的代码将会更干净†第一个方法调用。

private R reallyDoSomething(A a, B b, C c) throws SomeException {
...
... just worry about the normal case, and...
if (something's not normal) {
throw new SomeException(...);
}
...
}

public R doSomething(A a, B b, C c) {
try {
return reallyDoSomething(a, b, c);
} catch (SomeException ex) {
...
...handle abnormal case...
...
}
}

此外,请记住,他们称其为“异常(exception)”是有原因的:它们应该是异常(exception)的(即不寻常的)。通常,当一个方法抛出异常时,意味着该方法无法完成它通常应该做的任何工作。

异常允许我们将处理异常情况的代码与执行正常工作的代码分开。这可以使正常情况变得更容易阅读。 (如果您从未尝试过阅读大型 C 函数定义,其中错误处理始终与正常情况处理混合在一起,那么您可能无法完全欣赏异常的美妙之处。)

因此,如果目的是将正常与异常分开,您可以通过两种方式实现:(1) 将异常情况的处理程序(try/catch)放在与执行“的方法不同的方法中”正常”的工作,以及 (2) 不要对“正常”的事情使用异常。 (即,在抛出不是错误的异常之前要三思而行)。

<小时/>

† 当鲍勃叔叔说“干净”时,他的意思是“易于阅读”

关于java - 在 Java 中如何抛出和捕获异常?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24938327/

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