给代码做异常处理

Posted l666

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了给代码做异常处理相关的知识,希望对你有一定的参考价值。

技术分享图片

public class seven2{
    public static void main(String[] args){
        int score[];
        score=new int[3];
        try{                                //会出现异常的代码块用try括起来
            for(int x=0;x<4;x++)            //定义的数组长度为三,循环却跑到了四,属于数组越界
        score[x]=x*2+1;
            for(int x=0;x<3;x++)
        System.out.println("score["+x+"]="+score[x]);
        }
        catch(ArrayIndexOutOfBoundsException e){        //抛出数组越界异常
            System.out.println("数组越界异常:"+e);        
        }
    }
}

技术分享图片

 

以上是关于给代码做异常处理的主要内容,如果未能解决你的问题,请参考以下文章

PCL异常处理:pcl 1.8.13rdpartyoostincludeoost-1_64oost ypeofmsvc ypeof_impl.hpp(125): error(代码片段

Java异常处理机制

异常处理

java 反射代码片段

Android NDK开发篇:Java与原生代码通信(异常处理)

Android NDK开发篇:Java与原生代码通信(异常处理)