How do I find where an exception was thrown in C++?

后端 未结 7 1296
[愿得一人]
[愿得一人] 2020-11-28 18:55

I have a program that throws an uncaught exception somewhere. All I get is a report of an exception being thrown, and no information as to where it was thrown. It seems illo

7条回答
  •  [愿得一人]
    2020-11-28 19:43

    Check this thread, perhaps it helps:

    Catching all unhandled C++ exceptions?

    I made good experiences with that software:

    http://www.codeproject.com/KB/applications/blackbox.aspx

    It can print out a stack trace to a file for any unhandled exception.

提交回复
热议问题