15

我正在使用回溯从引发异常的位置获取信息。在我的异常的构造函数中,我将回溯存储在 std::string 中,在这种类型的异常的 catch 块中,我正在打印这个回溯。

但我想知道,是否有可能以某种方式在 catch 块中为其他异常类型获得相同的回溯?

4

3 回答 3

10

您可能对正在开发的 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

希望这可以帮助!

于 2010-11-26T09:31:58.540 回答
8

我不这么认为。当执行程序在 catch 块中停止时,堆栈被展开,之前发生的所有事情都不再在堆栈中了。

于 2010-11-26T09:29:05.737 回答
1

有问题的类是否具有您可以编辑的共同基础?

否则,我在每次在 Visual C++ 程序中抛出异常时如何运行一些代码?;-P 其他一些人也认为。

于 2010-11-26T09:54:33.897 回答