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

来源:1-5 Java 中的异常抛出以及自定义异常

kk求知者

2017-12-18 17:24

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回答

  • 慕神3632987
    2017-12-18 21:02:01

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

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

    希望能帮到你

    kk求知者

    ExceptionInital类,我这个写的测试类 创建Method对象 调用Test中的Test1方法。。

    2017-12-18 21:52:06

    共 2 条回复 >

  • Simenzz
    2017-12-18 20:30:18

    你自己放Eclipse里面看看

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

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

    其他的你在自己看吧。

    kk求知者 回复Simenz...

    我敲代码敲昏了,我对象创建错了!应该是Method object=new Method();

    2017-12-18 21:41:16

    共 2 条回复 >

Java入门第三季

Java中你必须懂得常用技能,不容错过的精彩,快来加入吧

409792 学习 · 4340 问题

查看课程

相似问题