“第一次机会例外"在 MFC 应用程序中的含义?

当我运行 Windows 应用程序 (MFC) 时,我收到两个警告.

When I run my Windows Application(MFC) I get two Warnings.

XXX.exe 中 0x01046a44 处的第一次机会异常:0xC0000005:访问冲突读取位置 0x00000048.

XXX.exe 中 0x75fdb9bc (KernelBase.dll) 处的第一次机会异常:0x000006BA:RPC 服务器不可用.

我可以知道它们的意思吗?

May I know what they mean?

推荐答案

什么是第一次机会异常?

在调试应用程序时,只要遇到异常,调试器就会收到通知.此时,应用程序被挂起,调试器决定如何处理异常.第一次通过此机制称为第一次机会"异常.根据调试器的配置,它要么恢复应用程序并传递异常,要么将应用程序挂起并进入调试模式.如果应用程序处理了异常,它会继续正常运行.

When an application is being debugged, the debugger gets notified whenever an exception is encountered. At this point, the application is suspended and the debugger decides how to handle the exception. The first pass through this mechanism is called a "first chance" exception. Depending on the debugger's configuration, it will either resume the application and pass the exception on or it will leave the application suspended and enter debug mode. If the application handles the exception, it continues to run normally.

有关详细信息,请参阅这篇文章.

See this Article for more details.

相关文章