2009년 7월 2일 목요일

Exception

try{
...
}catch(ArithmeticException e){
System.out.println("0으로 나눌수 없음");
}catch(NumberFormatException e){
System.out.println("숫자가 아님");
}catch(ArrayIndexOutOfBoundsException e){
System.out.println("배열의 갯수가 부족함");
}finally{
System.out.println("****finish****");
}

댓글 없음:

댓글 쓰기