티스토리 뷰
public class ExceptionEx1 {
public static void main(String[] args) {
String a = "김";
int aa = 10;
int bb = 0;
int[] arr = new int[10];
//ArithmeticException
try {
System.out.println(aa / bb);
// 0으로 나눌수없을때 Exception
} catch (Exception e) {
e.printStackTrace();
}
//NumberFormatException
try {
int d = Integer.valueOf(a);
// 숫자로 바꿀수없는 형변환 Exception
} catch (Exception e) {
e.printStackTrace();
}
//ArrayIndexOutOfBoundsException
try {
int cc = arr[10];
// 10번째 index 는 9까지인데 index 10을 찾으려할때
}catch(Exception e) {
e.printStackTrace();
}
//ClassCastException
try {
Object obj = new Integer(0);
System.out.println((String)obj);
//Integer 객체를 String 으로 캐스팅 하려할때
}catch(Exception e) {
e.printStackTrace();
}
//NullPointerException
try {
String str = null;
char ccc = str.charAt(0);
//str 에 null 값이 있는데 str에 0번째에 접근하려할때
}catch(Exception e) {
e.printStackTrace();
}
}
}
'Java' 카테고리의 다른 글
Java List <-> Set 변환하기 (0) | 2022.04.19 |
---|---|
Java 박싱(Boxing) 과 언박싱 (unBoxing) (0) | 2022.04.19 |
Java BufferedReader 사용방법 (0) | 2022.04.14 |
Java 예외처리 (0) | 2022.04.14 |
Java 추상클래스 vs 인터페이스 차이 (0) | 2022.04.13 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- java문자열배열
- 자바
- nexLine
- 기본형타입
- Scanner 와 BufferedReader 차이
- java전역변수
- java 배열 출력
- Java
- publi
- set
- Method 영역
- react-redux
- mapDispatchToProps
- java숫자형배열
- map set 변환
- redux
- e.toString()
- 클래스변수 인스턴스변수 차이
- java 예외
- e.getMessage()
- 클래스영역
- java최대값최소값
- e.printStackTrace()
- final 변수 초기화
- Heap Area
- 오버로딩
- Stack Area
- java멤버변수
- List Set 변환
- Dispatch
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
31 |
글 보관함