C++ catching all exceptions(C++ 捕获所有异常)
问题描述
是否有 Java 的 C++ 等价物
Is there a c++ equivalent of Java's
try {
...
}
catch (Throwable t) {
...
}
我正在尝试调试调用本机 Windows 函数的 Java/jni 代码,但虚拟机不断崩溃.本机代码在单元测试中看起来很好,只有在通过 jni 调用时才会崩溃.通用的异常捕获机制将证明非常有用.
I am trying to debug Java/jni code that calls native windows functions and the virtual machine keeps crashing. The native code appears fine in unit testing and only seems to crash when called through jni. A generic exception catching mechanism would prove extremely useful.
推荐答案
try{
// ...
} catch (...) {
// ...
}
将捕获所有 C++ 异常,但它应该被认为是糟糕的设计.您可以使用 c++11 的新 current_exception 机制,但是如果您没有能力使用 c++11(需要重写的遗留代码系统),那么您就没有用于获取消息或名称的命名异常指针.您可能希望为您可以捕获的各种异常添加单独的 catch 子句,并且只捕获底部的所有内容以记录意外异常.例如:
will catch all C++ exceptions, but it should be considered bad design. You can use c++11's new current_exception mechanism, but if you don't have the ability to use c++11 (legacy code systems requiring a rewrite), then you have no named exception pointer to use to get a message or name. You may want to add separate catch clauses for the various exceptions you can catch, and only catch everything at the bottom to record an unexpected exception. E.g.:
try{
// ...
} catch (const std::exception& ex) {
// ...
} catch (const std::string& ex) {
// ...
} catch (...) {
// ...
}
这篇关于C++ 捕获所有异常的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:C++ 捕获所有异常


基础教程推荐
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 从 std::cin 读取密码 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01