提问人:AeroSun 提问时间:2/2/2018 最后编辑:milbrandtAeroSun 更新时间:2/4/2018 访问量:133
为什么boost::d iagnostic_information崩溃了,如何解决?
Why boost::diagnostic_information crashed and how to fix it?
问:
我尝试使用boost::exception,但遇到了麻烦。我编写以下代码:
struct BaseExceptionXXX : public virtual std::exception, public virtual boost::exception
{
public:
BaseExceptionXXX()
{ };
virtual ~BaseExceptionXXX() {};
BaseExceptionXXX(char const* const message)
: std::exception(message)
{ }
BaseExceptionXXX(const std::exception& e)
: std::exception(e)
{ }
BaseExceptionXXX(const BaseException& e)
: std::exception(e)
, boost::exception(e)
{ }
bool IsEmpty() const
{
const std::string what_err = std::exception::what();
return (what_err.empty() && boost::get_error_info<UserErrorInfo>(*this) == nullptr);
}
const char* what() const throw() override
{
return boost::diagnostic_information(*this).c_str(); //<-- crash here
}
};
int main()
{
std::string exception_description;
try
{
BOOST_THROW_EXCEPTION(BaseExceptionXXX("hello exception"));
}
catch (BaseExceptionXXX& ex)
{
exception_description = ex.what(); //<-- crash here
}
}
但它在函数中崩溃了:boost::d iagnostic_information(*this)。它崩溃的原因:堆栈溢出
为什么会发生这种情况以及如何以正确的方式使用 boost::exception?
升压版 - 1.66
MSVS2017版本 - 15.5.5
答:
1赞
sehe
2/2/2018
#1
由于无限递归,导致堆栈溢出。在你的实现中,你写:what()
const char* what() const throw() override
{
return boost::diagnostic_information(*this).c_str(); //<-- crash here
}
但是,很明显,收集的关键部分是来自异常的消息。因此,将递归调用自身。diagnostic_information
what()
what()
评论
std::exception(message)