t**********s 发帖数: 930 | 1 几乎在每个function上都有类似这样的提示,很烦人:
throws java.io.FileNotFoundException, IOException, ClassNotFoundException
我的java程序并不想编的那么仔细,现在只想有个大概的框架。
有没有什么地方可以一次加上这个异常处理,就不用在其他的地方加了。
或者,不理会这个提示,编译能通过吗? | g*****g 发帖数: 34805 | 2 IOException is something you either have to throw or
catch. FileNotFoundException is a subclass of IOException
and you can ignore that.
You shouldn't deal with ClassNotFoundException unless
have a good reason, so maybe you should remove the throw
clause instead.
【在 t**********s 的大作中提到】 : 几乎在每个function上都有类似这样的提示,很烦人: : throws java.io.FileNotFoundException, IOException, ClassNotFoundException : 我的java程序并不想编的那么仔细,现在只想有个大概的框架。 : 有没有什么地方可以一次加上这个异常处理,就不用在其他的地方加了。 : 或者,不理会这个提示,编译能通过吗?
|
|