Notice
Recent Posts
Recent Comments
Link
«   2024/07   »
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
Tags
more
Archives
Today
Total
관리 메뉴

WON.dev

chapter04 : exception 본문

JAVA/chapter19_exception

chapter04 : exception

GAWON 2023. 5. 30. 09:29
package org.joonzis.ex;
/*
 * NullPointerException
 * 객체 참조가 없는 상태, 즉 null 값을 갖는 객체를 사용하는 경우 예외 발생
 */
public class Ex04_exception {
	public static void main(String[] args) {
		
		try {
//			String name = null;	// 예외 발생
			String name = "김씨";
			
			System.out.println("이름 : " + name.toString());
		} catch (Exception e) {
			System.out.println("예외발생");
			System.out.println(e.getMessage());
			System.out.println("-------------");
			e.printStackTrace();
		}
		
	}
}

'JAVA > chapter19_exception' 카테고리의 다른 글

chapter06 : exception  (0) 2023.05.30
chapter05 : exception  (0) 2023.05.30
chapter03 : exception  (0) 2023.05.30
chapter02 : exception  (0) 2023.05.30
chapter01 : exception  (0) 2023.05.30