デストラクタで、例外が現在処理されているかどうかを判断する方法はありますか?
Joseph
質問する
341 次
3 に答える
7
std::uncaught_exception() を使用できますが、思ったように動作しない場合があります。詳細については、GoTW#47を参照してください。
于 2008-09-24T12:29:34.760 に答える
2
Lucが言ったように、std :: uncaught_exception()を使用できます。しかし、なぜあなたは知りたいのですか?いずれにせよ、デストラクタは決して例外をスローしてはなりません!
于 2008-09-24T14:53:05.070 に答える
0
Boost Test Libraryを使用できます。小さな例については、こちらをご覧ください。
struct my_exception1
{
explicit my_exception1( int res_code ) : m_res_code( res_code ) {}
int m_res_code;
};
struct my_exception2
{
explicit my_exception2( int res_code ) : m_res_code( res_code ) {}
int m_res_code;
};
class dangerous_call {
public:
dangerous_call( int argc ) : m_argc( argc ) {}
int operator()()
{
if( m_argc < 2 )
throw my_exception1( 23 );
if( m_argc > 3 )
throw my_exception2( 45 );
else if( m_argc > 2 )
throw "too many args";
return 1;
}
private:
int m_argc;
};
void translate_my_exception1( my_exception1 const& ex )
{
std::cout << "Caught my_exception1(" << ex.m_res_code << ")"<< std::endl;
}
void translate_my_exception2( my_exception2 const& ex )
{
std::cout << "Caught my_exception2(" << ex.m_res_code << ")"<< std::endl;
}
int
cpp_main( int argc , char *[] )
{
::boost::execution_monitor ex_mon;
ex_mon.register_exception_translator<my_exception1>(
&translate_my_exception1);
ex_mon.register_exception_translator<my_exception2>(
&translate_my_exception2);
try{
// ex_mon.detect_memory_leak( true);
ex_mon.execute( ::boost::unit_test::callback0<int>(
dangerous_call( argc ) ) );
}
catch ( boost::execution_exception const& ex ) {
std::cout << "Caught exception: " << ex.what() << std::endl;
}
return 0;
}
ドキュメントを掘り下げる必要があります。ソフトウェアをテストするための非常に強力なライブラリです。とにかく、ブーストの助けを借りて、関数テストのどこかでトリガーされたあらゆる種類の例外をキャッチできます!
于 2008-09-24T12:57:07.020 に答える