标签:运行时 print pac tty 客户端 处理 tac int SQ
ExceptionTester类
package cn.sehzh;
public class ExceptionTester {
public void testException() throws Exception {
throw new Exception("异常");
}
}
Main类
package cn.sehzh;
public class Main {
public static void main(String[] args) {
ExceptionTester exceptionTester = new ExceptionTester();
try {
//客户端调用时必须捕获或抛出,这里采用捕获
exceptionTester.testException();
} catch (Exception e) {
e.printStackTrace();
}
}
}
ExceptionTester类
package cn.sehzh;
public class ExceptionTester {
public void testException(){
throw new RuntimeException("运行时异常");
}
}
Main类
package cn.sehzh;
public class Main {
public static void main(String[] args) {
ExceptionTester exceptionTester = new ExceptionTester();
//这里没有要求客户端调用时必须处理
exceptionTester.testException();
}
}
Java 中的两种异常(Checked exceptions 和 Unchecked exceptions)
标签:运行时 print pac tty 客户端 处理 tac int SQ
原文地址:https://www.cnblogs.com/zjj1996/p/9140254.html