gpt4 book ai didi

c++ - 如何正确捕获 std 和 boost 异常

转载 作者:IT老高 更新时间:2023-10-28 22:35:28 58 4
gpt4 key购买 nike

请告诉我如何在 boost::exception 中正确使用 try/catch。

这是一个例子

void Settings::init(const std::string &filename)
{
using boost::property_tree::ptree;
try
{
read_xml(filename, pt);
}
catch(boost::exception const& ex)
{
LOG_FATAL("Can't init settings. %s", /* here is the question */);
}
}

我也需要 catch std::exception 吗?我不能让我的应用程序失败,所以我只需要记录所有内容。

统一更新:我现在也无法理解如何从异常中检索日志记录信息???

最佳答案

std::exception 有一个名为 what() 的成员函数,它返回 可能const char* > 解释发生了什么。如果你想记录它(猜测 LOG_FATAL 以某种方式包装 printf )你可以这样做:

catch(std::exception const&  ex)
{
LOG_FATAL("Can't init settings. %s", ex.what());
}

对于 boost::exception 虽然你可以使用 boost::get_error_info了解更多信息。

关于c++ - 如何正确捕获 std 和 boost 异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8136534/

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