如何为整个类抛出异常而不是逐个方法执行它
我正在用 Java 编写一个程序,并且我的一个类中的几乎每个方法都是这样写的:
public void doStuff() throws AWTException{}
有没有一种方法可以让我摆脱为每个方法键入 throws AWTException 的额外步骤,并以某种方式为整个方法执行此操作班级?
I'm writing a program in Java, and nearly every method in one of my classes is written like:
public void doStuff() throws AWTException{}
Is there a way for me to get rid of the extra step of typing throws AWTException for each method, and somehow do it for the entire class?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
抱歉,不行。在 Java 中没有办法做到这一点。
Sorry, No. There is no way to do this in Java.
如果您在类级别抛出异常,那么您如何识别方法抛出哪种类型的异常......或者它抛出异常的方法。
所以它在java中是不允许的...而且它也不是一个好的java编码
if you throw exception with class level then how you identify that on which type of exception is thrown by method... or on which method it throw exception.
so it is not allow in java...and also its not a good coding with java
您可以在构造函数级别抛出异常。您可以看到 FileInputStream 如何强制我们在创建它的对象时抛出 IO 异常。
You can by throw exception at constructor level. You can see how FileInputStream force us to throw IO exception while creating object of it.