C++ 예외 처리의 위험성과 단점
·
C++/Exception
예외 처리의 위험성과 단점 메모리 누수 throw 이후의 코드는 무시되기 때문에, 메모리 누수가 발생할 가능성이 존재한다. #include using namespace std; int main() { try { int* i = new int[100000]; throw "error"; delete[] i; } catch (...) { cout