A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

  1. public class Throws_与Throw处理异常 {
  2.         public static void main(String[] args) {
  3.                 System.out.println("少壮不努力");
  4.                 try {
  5.                         method();
  6.                 } catch (Exception e) {
  7.                         // TODO Auto-generated catch block
  8.                         e.printStackTrace();
  9.                 }
  10.                 //method2();
  11.                 System.out.println("老大徒伤悲");
  12.         }

  13. /*        public static void method2() {
  14.                 // TODO Auto-generated method stub
  15.                 int a = 10;
  16.                 int b = 0;
  17.                 if (b==0) {
  18.                         throw new ArithmeticException();
  19.                 }else{
  20.                         System.out.println(a/b);
  21.                 }
  22.                
  23.         }*/

  24.         public static void method() throws Exception {
  25.                 // TODO Auto-generated method stub
  26.                 int a = 10;
  27.                 int b = 0;
  28.                 if (b==0) {
  29.                         throw new Exception();
  30.                 }else{
  31.                         System.out.println(a/b);
  32.                 }
  33.         }

  34. }
复制代码

1 个回复

倒序浏览
看起来好多了
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马