本帖最后由 我爱大自然 于 2015-3-4 21:30 编辑
- public class TestException2 {
- public static void main(String args[]){
- int a= 4,b=0;
- try{
- if(b==0)
- throw new ArithmeticException("一个算术异常");//抛出异常。
- else
- System.out.println(a+"/"+b+"="+a/b); //若没抛出异常,则执行此行。
- }
- catch(ArithmeticException e){
- System.out.println("抛出异常为:"+e);
- }
- }
- }
复制代码 关于第6行,抛出异常,为什么要加个new????希望大神帮忙解释下
|
|