bad_alloc, classe
La classe décrit une exception levée pour indiquer qu'une demande d'allocation n'a pas réussi.
Syntaxe
class bad_alloc : public exception {
bad_alloc();
virtual ~bad_alloc();
bad_alloc(const bad_alloc&);
bad_alloc& operator=(const bad_alloc&);
const char* what() const override;
};
Notes
La valeur retournée par est une chaîne C définie par what
l’implémentation. Aucune des fonctions membres ne lève d'exception.
Exemple
// 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