220817

김용진·2022년 8월 17일
0

throws

  • 메소드 선언부 끝에 작성, 메소드에서 처리하지 않은 예외를 호출한 곳으로 떠넘기는 역학을 한다.

public void method1(){
	try{
    	method2();  //호출
    }catch(Exception e){
    //예외처리
    System.out.println("예외")
    }
}

public void method2() throws Exception , ,,{
	//강제로 예외 발생
    throw new Exepciont();
}

git stash

출처 : https://www.lainyzine.com/ko/article/git-stash-usage-saving-changes-without-commit/

profile
개발 블로그

0개의 댓글