码迷,mamicode.com
首页 > 其他好文 > 详细

抛出异常

时间:2017-06-20 20:13:42      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:ext   pack   print   public   new   static   throws   cat   sage   

抛出异常

代码如下:

package Day09; public class TestIntSubClass extends TestInt {
public static void main(String[] args) {
int num = Integer.MAX_VALUE;
TestIntSubClass aa = new TestIntSubClass();
System.out.println(num);
try {
num = aa.intAddOne(num);
} catch (Exception e) {
System.out.println(e.getMessage());
} catch (MyException e) {
System.out.println(e.getMessage());
}
System.out.print(num);
} @Override
public int intAddOne(int number) throws Exception {
if (number >= Integer.MAX_VALUE) {
throw new MyException();
}
return ++number;
}

}

抛出异常

标签:ext   pack   print   public   new   static   throws   cat   sage   

原文地址:http://www.cnblogs.com/F001li/p/7055989.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!