gpt4 book ai didi

c++ - 运算符重载以构造异常消息

转载 作者:太空狗 更新时间:2023-10-29 22:54:09 25 4
gpt4 key购买 nike

我正在更改遗留代码库中的一些代码。这段代码中有一个经常重复的模式,如下所示:

std::stringstream ss;
ss << ...;
throw MyCustomException(ss.str());

因为无论如何我都在修改代码,所以我想制作如下内容:

throw MyCustomException() << ...;

有效地消除了对 std::stringstream 的需求.

我找到了一个解决方案:

struct MyCustomException: public std::runtime_error
{
MyCustomException(const std::string& what_arg="")
: std::runtime_error(what_arg)
{
}

#if 0
template<typename T>
friend
MyCustomException operator<<(MyCustomException e, const T& obj)
{
std::stringstream ss;
ss << e.what();
ss << obj;
return MyCustomException(ss.str());
}
#else
template<typename T>
MyCustomException operator<<(const T& obj)
{
std::stringstream ss;
ss << what();
ss << obj;
return MyCustomException(ss.str());
}
#endif
};

两种解决方案 ( #if ... #endif) 都有效,但由于一切都是按值计算的,因此在抛出异常对象之前会创建大量拷贝。将签名更改为 MyCustomException& e产生大量编译时错误(为什么?)。

由于我绑定(bind)到仅支持 C++03 的旧 GCC 修订版,整个问题变得更加复杂。所以这里没有花哨的 C++1[147] 东西!

有没有更好的方法来实现我想要的功能 (throw MyCustomException() << ...;),而无需在抛出异常时创建许多临时拷贝?

最佳答案

[S]ince everything is by value, a lot of copies of the exception object are created before it is thrown

如果异常是异常的 ( as they should ),则运行时丢失不应该是您关心的事情。此外,copy elision可能会节省你的一天。简介并总结。

话虽如此,您可以通过使用 const-ref 删除一半的所谓拷贝:

struct MyCustomException: public std::runtime_error
{
MyCustomException(const std::string& what_arg="")
: std::runtime_error(what_arg)
{}

template<typename T>
friend
MyCustomException operator<<(MyCustomException const& e, T const& obj)
{
std::stringstream ss;
ss << e.what();
ss << obj;
return MyCustomException(ss.str());
}
};

关于c++ - 运算符重载以构造异常消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57220524/

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