이상

1991 단어 대상을 향하다
class Demo
{
    public void method(int[] arr,int index)
    {
        if(arr == null)
        {
            throw new NullPointerException(" !");
        }
        if(index >= arr.length)
        {
            throw new ArrayIndexOutOfBoundsException(" , 。"+index);
        }
        if(index < 0)
        {
            throw new ArrayIndexOutOfBoundsException(" , "+index);
        }

        System.out.println(arr[index]); 
    }

}
public class ExceptionDemo2 {

    public static void main(String[] args) {
        int[] arr = new int [3];
        new Demo().method(arr,-3);  
    }
}

좋은 웹페이지 즐겨찾기