如何在VC程序中捕捉CException类的异常

2025-04-25 01:59:24
推荐回答(1个)
回答1:

TRY
{
   ....
}
CATCH( CException, e )
{
    e.ReportError();
}
END_CATCH