2020
10-06
10-06
JAVA基础--如何通过异常处理错误
《ThinkinginJava》上对这章的讲解不少,可见重要性,学习和总结一些主要的记录下来。一、创建自定义异常packageException;classSimpleExceptionextendsException{}publicclassInheritingException{publicvoidf()throwsSimpleException{System.out.println("ThrowSimpleExceptionfromf()");thrownewSimpleException();}publicstaticvoidmain(String[]args){InheritingExceptionsed...
继续阅读 >