我正在使用backtrace从抛出异常的位置获取信息。在我的异常的构造函数中,我将回溯存储在std :: string中,并且在catch块中存储此类型的异常,我正在打印此回溯。
但是我想知道,是否有可能以某种方式在catch块中为其他异常类型获得相同的回溯?
答案 0 :(得分:9)
您可能对正在开发的Boost库感兴趣:Portable Backtrace。例如:
#include <boost/backtrace.hpp>
#include <iostream>
int foo()
{
throw boost::runtime_error("My Error");
return 10;
}
int bar()
{
return foo()+20;
}
int main()
{
try {
std::cout << bar() << std::endl;
}
catch(std::exception const &e)
{
std::cerr << e.what() << std::endl;
std::cerr << boost::trace(e);
}
}
打印:
My Error
0x403fe1: boost::stack_trace::trace(void**, int) + 0x1b in ./test_backtrace
0x405451: boost::backtrace::backtrace(unsigned long) + 0x65 in ./test_backtrace
0x4054d2: boost::runtime_error::runtime_error(std::string const&) + 0x32 in ./test_backtrace
0x40417e: foo() + 0x44 in ./test_backtrace
0x40425c: bar() + 0x9 in ./test_backtrace
0x404271: main + 0x10 in ./test_backtrace
0x7fd612ecd1a6: __libc_start_main + 0xe6 in /lib/libc.so.6
0x403b39: __gxx_personality_v0 + 0x99 in ./test_backtrace
希望这有帮助!
答案 1 :(得分:8)
我不这么认为。当执行器在catch块中停止时,堆栈被解开,之前发生的所有事情都不再存在。
答案 2 :(得分:1)
相关课程是否共享您可以编辑的公共基础?
否则,我在How can some code be run each time an exception is thrown in a Visual C++ program?提供了一个精彩但非常低估的答案;-P其他一些人也认为。