编写程序 TestException1.java ,定义一个能抛出异常的方法,在 main() 方法中捕获处理该异常。按模板要求,将【代码】替换成相应的 Java 程序代码,使之能完成注释中的要求。 public class TestException1 { static void m() [ 代码 1]{ // 声明该方法会抛出 throws 异常 int a = 3; int b = 0; int c = a/b; System.out.println(c); } public static void main(String[] args) { // 以下是异常处理代码结构 [ 代码 2] { // 尝试执行方法 m() m(); } [ 代码 3] { // 捕获异常对象 e [ 代码 4] // 打印异常栈信息 } [ 代码 5] { // 无论是否发生异常都需要执行的代码 System.out.println(" 总会执行 "); } System.out.println(" 程序正常结束 "); } }