共用方式為


bad_alloc Class

類別會描述例外狀況狀況,表示配置要求沒有成功。

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

備註

所傳回的值什麼是實作自訂 c 字串。None 成員函式擲回任何例外狀況。

需求

標頭: <new>

Namespace: 標準

範例

// 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

需求

標頭: <new>

請參閱

參考

exception Class

在標準 C++ 程式庫中的執行緒安全

其他資源

<new> 成員