bad_alloc Class
クラスは、割り当て要求が成功しなかったことを示すためにスローされる例外を示します。
class bad_alloc : public exception {
bad_alloc();
virtual ~bad_alloc();
};
解説
what によって返される値は、実装定義された 15 C の文字列です。メンバー関数のいずれも例外はスローされません。
必要条件
ヘッダー: <新規作成>
名前空間: 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
必要条件
ヘッダー: <新規作成>