quot;First-chance exceptionquot; meaning in MFC Application?(“第一次机会例外在 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.
这篇关于“第一次机会例外"在 MFC 应用程序中的含义?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:“第一次机会例外"在 MFC 应用程序中的含义?


基础教程推荐
- 在 C++ 中计算滚动/移动平均值 2021-01-01
- 我有静态或动态 boost 库吗? 2021-01-01
- 如何检查GTK+3.0中的小部件类型? 2022-11-30
- 如何将 std::pair 的排序 std::list 转换为 std::map 2022-01-01
- 如何通过C程序打开命令提示符Cmd 2022-12-09
- 如何在 C++ 中初始化静态常量成员? 2022-01-01
- C++结构和函数声明。为什么它不能编译? 2022-11-07
- 静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么? 2021-01-01
- 常量变量在标题中不起作用 2021-01-01
- 这个宏可以转换成函数吗? 2022-01-01