We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
} catch (TheCheckedException e) { throw new AssertionError(); // 비검사 예외로 처리 } } catch (TheCheckedException e) { e.printStackTrace(); System.exit(1); // 시스템 종료 }
// before try { Obj.action(args); } catch (TheCheckedException e) { //do something } // after if (obj.actionPermitted(args)) { obj.action(args); } else { //do something }
The text was updated successfully, but these errors were encountered:
검사예외를 회피하는 방법에 대해 알게되었네요
Sorry, something went wrong.
HanaHww2
No branches or pull requests
아이템 71. 필요 없는 검사 예외 사용은 피하라
검사 예외
장점
단점
기준
회피
The text was updated successfully, but these errors were encountered: