exception

배열의 요소를 반대로 나열하는 메서드 작성 import java.util.Scanner; public class ReverseArray1 { // -- 배열의 요소 a[idx1]와 a[idx2]를 교환 -- // static void swap(int[] a, int idx1, int idx2) { int t = a[idx1]; a[idx1] = a[idx2]; a[idx2] = t; } // -- 배열 a의 요소를 반대로 나열(오류) -- // static void reverse (int[] a) { try { for(int i=0; i
Throwable 클래스의 직접 하위 클래스인 Exception 클래스와 RuntimeException 클래스도 Throwable과 같은 형식의 생성자를 가진다. - Java31 참고 import java.util.Scanner; public class ThrowAndCatch { // -- sw값에 따라 예외 발생 -- // static void check(int sw) throws Exception{ switch(sw) { case 1: throw new Exception("검사 예외 발생!"); case 2: throw new Exception("비검사 예외 발생!"); } } // -- check를 호출 -- // static void test(int sw) throws Exception{ che..
error, exception : 프로그램 실행 중에 발생할 수 있는 오류 # prnit(1) # NameError : 없는 이름의 변수, 함수를 사용하려고 할 때 # n = int('abc') # ValueError: invalid literal for int() with base 10: 'abc' : 데이터형 오류. 문자를 인트형으로 변환할 수 없음# n = int('123.') # ValueError: invalid literal for int() with base 10: '123.' # int(): 문자열 -> 정수# float: 문자열 -> 실수 numbers = [1, 2, 3] print(numbers[3]) >>IndexError: list index out of range 인덱스 번호가 ..
Codezoy
'exception' 태그의 글 목록