gpt4 book ai didi

.net - C++/CLI : Catching all (. NET/Win32/CRT) 异常

转载 作者:行者123 更新时间:2023-12-03 12:12:52 25 4
gpt4 key购买 nike

我知道这是不受欢迎的,但我在这里没有选择。我正在开发一个 C++/CLI 应用程序,它有一个我无法追踪的错误 - 主要是因为它绕过了我当前的崩溃处理程序:

AppDomain::CurrentDomain->UnhandledException += gcnew UnhandledExceptionEventHandler(&LogAndExit);
Application::ThreadException += gcnew ThreadExceptionEventHandler(&LogAndExit);
Application::SetUnhandledExceptionMode(UnhandledExceptionMode::CatchException);
try
{
Application::Run(gcnew frmMain());
}
catch (Exception^ ex)
{
LogAndExit(ex);
}
catch (...)
{
LogAndExit();
}

我想是标准的 .NET 崩溃处理。 MSDN 报告说,一些 CRT 异常会破坏托管堆栈并静默中止应用程序。

我一直在阅读 _set_invalid_parameter_handler,但即使我收到 LNK2001 错误,它似乎也不能与/clr:pure 一起使用。我是对的,还是我只是对它进行了 PEBKAC 处理而丢失了一个 lib 文件?

最佳答案

你能跑在/clr模式?如果你可以试试这个:

#include <exception>

然后:
try
{
try
{
Application::Run(gcnew frmMain());
}
catch(const exception& ex)
{
throw gcnew System::Exception(gcnew System::String(ex.what()));
}
}
catch (Exception^ ex)
{
LogAndExit(ex);
}
catch (...)
{
LogAndExit();
}

还有一点要注意:如果您的应用程序是多线程的,那么您只会从 frmMain() 所在的线程中捕获异常。在跑。因此,在这种情况下,不可能对整个应用程序进行全面处理!

关于.net - C++/CLI : Catching all (. NET/Win32/CRT) 异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6628412/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com