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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© muzigejin 黑马帝   /  2012-1-15 23:41  /  1911 人查看  /  2 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

  1. public static void main(String[] args) {
  2.                 // TODO Auto-generated method stub
  3.                 String s = "1999-01-10";
  4.                 SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd",Locale.US);
  5.                 try {
  6.                         df.parse(s);
  7.                 } catch (ParseException e) {
  8.                         throw e;//错误
  9.                                                 //throw new ParseException(e);//错误
  10.                         //throw new RuntimeException(e); //正确
  11.                 }
  12.         }
复制代码
1.上面 throw e;为什么不对呢!
2.throw new RuntimeException(e);和throw e不都是抛给上一级处理吗??
3.throw new ParseException(e);为什么也正确呢??

2 个回复

倒序浏览
本帖最后由 张冬冬 于 2012-1-15 23:57 编辑

异常应该是runtimexception或runtimexception的子类才可以,意思就是必须抛一个运行时期的异常才行。
回复 使用道具 举报
在方法内部,若有使用throw xxExceprion进行抛出异常,则需要在该方法上进行声明:throws xxExceprion。(而对于RuntimeExceprion可以不用声明)
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马