Exception Handling 썸네일형 리스트형 [C++] 예외 처리(Exception Handling) - 컴도리돌이 outline C++ Exceptions : Basics try, catch, and throw Matching Catch Handlers Uncaught Exceptions Cleaning Up Unwinding the stack C++ 예외처리 (C++ Exceptions : Basics) 예외 처리(Exception Handling)란 프로그램 실행 도중에 일어나는 비정상적인 상황이 벌어질 때, 이를 처리하는 과정을 말한다. #include using namespace std; double Division(int a, int b) { if (b == 0) {throw "Division by zero condition!";} return (a / (double) b); } int main () { i.. 더보기 이전 1 다음