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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 透过生活 高级黑马   /  2014-1-24 18:36  /  747 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文


class FuShuException extends Exception{
private int val;
FuShuException(String mess,int val){
  super(mess);
  this.val = val;
}
public int getVal(){
  return val;
}
}


class Demo{//Demo这显示错误
  int div(int a ,int b)throws FuShuException{
  if(b<0)
  throw new FuShuException("出现负数",b);
  return a/b;
}
}

public class ExceptionDemo2{
public static void main(String args []){
Demo d  = new Demo();
try{
  int x = d.div(4,-1);//传入数字测试
  System.out.println("x = "+x);
} catch(FuShuException e){
  
  System.out.println("程序出现异常");
  System.out.println(e.toString());
  System.out.println("错误数字:"+ e.getVal());
}
  System.out.println("OVER");
}
}

看毕老师视频,写的这个代码,怎么上边Demo类这出现错误。。。求解释。。。

评分

参与人数 1技术分 +1 收起 理由
ily521125 + 1

查看全部评分

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马