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
프로그램은 오류를 내재한 채 동작
처리
전파
로그
예시 : FileInputStream
무시한 예외는 어떻게 처리해야할까?
주석
ignored
The text was updated successfully, but these errors were encountered:
No branches or pull requests
예외는 왜 무시하면 안되는가?
프로그램은 오류를 내재한 채 동작
하게 된다. 그러다 어느 순간 문제의 원인과 아무 상관 없는 곳에서 갑자기 죽어버릴 수 있다.처리
하면 오류를 완전히 피할 수 있다. 무시하지 않고 바깥으로전파
되게만 놔둬도 최소한 디버깅 정보를 남긴 채 프로그램이 신속히 중단되게 할 수 있다. catch 블록을 비워 무시하는 것을 절대 절대 하면 안된다.로그
라도 남겨라!무시해도 되는 예외와 그 대처
예시 : FileInputStream
무시한 예외는 어떻게 처리해야할까?
로그
로 남기는 편이 좋다.주석
으로 남기고, 예외 변수의 이름을ignored
로 바꾸자.The text was updated successfully, but these errors were encountered: