gpt4 book ai didi

java - 异常抛出或捕获并尝试

转载 作者:行者123 更新时间:2023-11-30 10:21:41 27 4
gpt4 key购买 nike

我正在尝试学习 java,但在理解异常的工作原理方面遇到了一些问题。

我们什么时候需要在条件之后使用 throw?举个例子

public Ex(String name, String prenom, int age) throws exceptionex  {
if (name.length() < 3 && prenom.length() < 3 && age < 1) throw new exceptionex();

this.age = age;
this.name = name;
this.prenom = prenom;

}

excepetionex 是一个空类,它扩展了 Exception

上一个例子和这个例子有什么区别?

public Ex(String name, String prenom, int age)   {
if (name.length() < 3 && prenom.length() < 3 && age < 1)
try {
throw new exceptionex();
} catch (exceptionex e) {
e.printStackTrace();
}

this.age = age;
this.name = name;
this.prenom = prenom;

}

printstackTrace 究竟做了什么?

如果我们想自定义一个异常(exeptionex here ),我们是否总是需要创建另一个类,或者我们可以只使用(throw new Exception)?

我用谷歌搜索了我的问题,但没有找到我能理解的答案,可能是因为我是新手,或者因为英语不是我的母语,所以我需要一个尽可能简单的解释。

最佳答案

what is the diffrence between the past example and this one !

如果满足该条件,第一个会阻止您创建 Ex 的实例。

第二个打印一些东西到 stderr,然后创建实例。

请注意,您不需要抛出异常来打印其堆栈跟踪:

new exexception().printStackTrace();

与第二个示例中的 try/catch 相同。

And what does printstackTrace exactly does

您的第一站应该是 Javadoc :

Prints this throwable and its backtrace to the standard error stream. This method prints a stack trace for this Throwable object on the error output stream that is the value of the field System.err. The first line of output contains the result of the toString() method for this object. Remaining lines represent data previously recorded by the method fillInStackTrace()...

继续。阅读它,并针对您不理解的地方提出一个具体问题。

Do we always need to create another class if we wanted to customise an exception (exeptionex here ) or we can just use (throw new Exception)!

您并不总是需要新的异常类型。 Effective Java 2nd Ed 第 60 条建议“支持使用标准异常”。

请注意,您基本上从不想抛出 Exception 本身(并且您很少应该捕获它)。

关于java - 异常抛出或捕获并尝试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47714954/

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