다음을 통해 공유


bad_alloc 클래스

The class describes an exception thrown to indicate that an allocation request did not succeed.

class bad_alloc : public exception {
   bad_alloc();
   virtual ~bad_alloc();
};

설명

The value returned by what is an implementation-defined C string. None of the member functions throw any exceptions.

요구 사항

Header: <new>

네임스페이스: std

예제

// bad_alloc.cpp
// compile with: /EHsc
#include<new>
#include<iostream>
using namespace std;

int main() {
   char* ptr;
   try {
      ptr = new char[(~unsigned int((int)0)/2) - 1];
      delete[] ptr;
   }
   catch( bad_alloc &ba) {
      cout << ba.what( ) << endl;
   }
}

샘플 출력

bad allocation

요구 사항

Header: <new>

참고 항목

참조

exception 클래스

C++ 표준 라이브러리의 스레드 보안

기타 리소스

<new> 멤버