C++ 예외 처리의 위험성과 단점
·
C++/Exception
예외 처리의 위험성과 단점 메모리 누수 throw 이후의 코드는 무시되기 때문에, 메모리 누수가 발생할 가능성이 존재한다. #include using namespace std; int main() { try { int* i = new int[100000]; throw "error"; delete[] i; } catch (...) { cout
C++ 함수 try (Function try)
·
C++/Exception
함수 try (Function try) 함수의 body 자체가 try, catch로 이루어진 경우 함수를 정의할 때 중괄호로 감싸지 않아도 된다고 한다. 잘 쓰이는 문법은 아닌 것 같다. rethrow를 하지 않는다. #include using namespace std; void doSomething() try { throw - 1; } catch (...) { cout
C++ 예외 클래스와 상속 (Exception Class and Inheritance)
·
C++/Exception
예외 클래스와 상속 (Exception Class and Inheritance) 예외 클래스 예외 상황을 처리할 때 필요한 변수나 함수를 멤버로 가진 클래스 예외 클래스를 사용하지 않은 예제 #include using namespace std; class MyArray { int data_[5]; public: int& operator[] (const int& index) { if (index = 5) throw -1; return data_[index]; } }; void doSomething() { MyArray my_array; try { my_array[100]; } catch (const int& x) { cerr
C++ 스택 되감기 (Stack Unwinding)
·
C++/Exception
스택 되감기 (Stack Unwinding) throw를 통해 던질 경우, 타입에 맞는 catch를 만날 때까지 스택을 되감는다. throw 뒤의 코드는 실행하지 않는다. 마찬가지로 catch를 만나지 못해서 스택을 되감는 경우에도 뒤의 코드를 실행하지 않고 바로 리턴한다. 아래 코드를 디버깅하여 한 줄씩 보면 이해하기 편하다. #include using namespace std; void last() { cout
C++ 예외 처리의 기본
·
C++/Exception
예외 처리의 기본 try, throw, catch try : 코드를 실행할 부분 throw : 예외 상황이 발생하면 해당 정보를 던지는 부분 catch : try 내부에서 throw가 발생했을 경우 이를 받아주는 부분 #include using namespace std; int main() { double x; cin >> x; try { if (x < 0.0) throw string("Negative input"); cout
C++ 예외 처리 (Exception Handling)
·
C++/Exception
예외 처리 (Exception Handling) 예외 처리의 기본 스택 되감기 (Stack Unwinding) 예외 클래스와 상속 (Exception Class and Inheritance) std::exception 함수 try (Function try) 예외 처리의 위험성과 단점