자바 에서 throws 와 throw 의 차이

1399 단어
자바 에서 throws 와 throw 의 차이
throws: 이상 을 처리 하 는 방식 으로 이상 을 던 지고 호출 자가 처리 합 니 다.
용법: public static void checkScore(int score) throws Exception, 방법 위치 에서 이상 던 지기 용 throws
throw: 이상 한 방식 을 만 들 고 끝 내 는 방법
용법: throw new MyException ("시험 성적 이 요구 에 부합 되 지 않 음");이상 하 게 던 져.
메모: (throw) 를 던 지 는 것 이 컴 파일 시기 이상 이 라면 방법 설명 에서 던 져 야 합 니 다 (throws)
     package com.itheima_01;
/*
 *   :     ,      ,          0-100       ,      
 * 
 * throws:         ,     ,       
 * throw:       ,      
 * 
 *   :    (throw)        ,          (throws)
 * 
 *            ?
 * 		    ,       Exception  RuntimeException,          
 * 
 *  */
public class ExceptionDemo7 {
	public static void main(String[] args) {
		/*boolean flag = checkScore(-10);
		System.out.println(flag);*/
		
		
		
		try {
			checkScore(110);
		} catch (Exception e) {
			//System.out.println(e.getMessage());
			e.printStackTrace();
		}
		
		
		//checkScore(110);
	}
	
/*	public static boolean checkScore(int score) {
		//            ,        false
		if(score < 0 || score > 100) {
			return false;
		}
		
		//  
		return true;
		
	}*/
	
	public static void checkScore(int score) throws Exception {
		if(score < 0 || score > 100) {
			throw new RuntimeException("         ");
			//throw new Exception("         ");
		} 
		
		System.out.println("        ");
	}
	
	
}

좋은 웹페이지 즐겨찾기