gpt4 book ai didi

来自函数的 c++ stacktrace 抛出异常?

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:31:49 26 4
gpt4 key购买 nike

我可以利用 gcc 的回溯在程序的任何给定点获取堆栈跟踪,但我想从抛出异常时堆栈所在的任何帧获取跟踪,即在堆栈展开。

例如,下面的 block

func() {
throw std::exception();
}

try {
func();
}
catch ( std::exception ) {
std::cout << print_trace();
//do stuff
}

应该仍然能够以某种方式保留 func() 的框架。

这是 asked before ,但它涉及一个未处理的异常,该异常会终止程序并且可能没有给调用堆栈一个放松的机会?

有没有办法做到这一点,同时仍然能够正常捕获和处理异常?

可能有一种方法,比如为所有异常设置一个处理程序,它除了生成跟踪并重新抛出异常外什么都不做。理想情况下,我应该能够在 Exception 类构造函数中生成跟踪,但在这里我不一定能控制可能遇到的异常。

最佳答案

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

希望这对您有所帮助!

关于来自函数的 c++ stacktrace 抛出异常?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6271132/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com