为了账号安全,请及时绑定邮箱和手机立即绑定

有没有高手帮我看看代码怎么运行不起!

package immoc.com.trycatch;
public class Test {
/*
 * 抛出 数组越界和算术异常
 */
 public void Test1(int x) throws ArrayIndexOutOfBoundsException,ArithmeticException{
     System.out.println(x);
     if(x == 0){
         System.out.println("没有异常");
         return;
     }
     //数据越界异常
     else if (x == 1){
         int[] a = new int[3];
          a[3] = 5;
     }
     //算术异常
     else if (x == 2){
         int i = 0;
         int j = 5/0;
     }
 }
}

package immoc.com.trycatch;
public class ExceptionInital {
 /**
  * @param args
  */

public static void main(String[] args){
 //创建对象
    ExceptionInital object = new ExceptionInital();
    // 调用会抛出异常的方法,用try-catch块
    try{
        object.Test1(0);
    }catch(Exception e){
        System.out.println(e);
    }
    // 数组越界异常
    try{
        object.Test1(1);
    }catch (ArrayIndexOutOfBoundsException e) {
        System.out.println("数组越界异常:"+e);
    }
    // 算术异常
    try{
        object.Test1(2);
    }catch(ArithmeticException e){
        System.out.println("算术异常:"+e);
    }
    //使用 throw 抛出异常(可以抛出异常对象,也可以抛出异常对象的引用)
    try{
        ArrayIndexOutOfBoundsException  exception = new ArrayIndexOutOfBoundsException();
        throw exception;//new ArrayIndexOutOfBoundsException();
    }catch(ArrayIndexOutOfBoundsException e){
        System.out.println("thorw抛出异常:"+e);
    }

}



正在回答

2 回答

public static void main(Strring[] args),这里多了个r,应该是String[]

ExceptionInital类中没有定义test1(),自己也是小白,还不知道怎么解决

希望能帮到你

0 回复 有任何疑惑可以回复我~
#1

kk求知者 提问者

我脑袋搞昏了 我对象创建错了!!!!
2017-12-18 回复 有任何疑惑可以回复我~
#2

kk求知者 提问者

ExceptionInital类,我这个写的测试类 创建Method对象 调用Test中的Test1方法。。
2017-12-18 回复 有任何疑惑可以回复我~

你自己放Eclipse里面看看

public static void main(Strring[] args)这里错了

而且你要调用的Test1方法在Test类里面。所以object的类型应该是Test

其他的你在自己看吧。

0 回复 有任何疑惑可以回复我~
#1

Simenzz

而且我觉得throws里面至少要throw出异常 我也刚开始学,有什么问题请指出。
2017-12-18 回复 有任何疑惑可以回复我~
#2

kk求知者 提问者 回复 Simenzz

我敲代码敲昏了,我对象创建错了!应该是Method object=new Method();
2017-12-18 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

有没有高手帮我看看代码怎么运行不起!

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信