C++ unhandled exceptions

后端 未结 1 1994
悲哀的现实
悲哀的现实 2021-02-08 16:21

Does C++ offer a way to \'show\' something visual if an unhandled exception occurs?

What I want to do is to make something like assert(unhandled exception.msg())

1条回答
  •  情深已故
    2021-02-08 17:06

    There's no way specified by the standard to actually display the message of the uncaught exception. However, on many platforms, it is possible anyway. On Windows, you can use SetUnhandledExceptionFilter and pull out the C++ exception information. With g++ (appropriate versions of anyway), the terminate handler can access the uncaught exception with code like:

       void terminate_handler()
       {
           try { throw; }
           catch(const std::exception& e) { log(e.what()); }
           catch(...) {}
       }
    

    and indeed g++'s default terminate handler does something similar to this. You can set the terminate handler with set_terminate.

    IN short, no there's no generic C++ way, but there are ways depending on your platform.

    0 讨论(0)
提交回复
热议问题