#include using namespace std; int main ( void ) { try { throw NULL; //违背1 } catch ( int ) { //... } catch ( const char * ) { //... } return ( 0 ); }