std::exception::operator=
来自 cppreference.com
exception& operator=( const exception& other ) throw(); |
(直到 C++11) | |
exception& operator=( const exception& other ) noexcept; |
(自 C++11 起) | |
复制赋值运算符。将 other 的内容赋值给 *this。
如果 *this 和 other 都是动态类型 std::exception
,则在赋值后 std::strcmp(what(), other.what()) == 0。
[编辑] 参数
other | - | 要赋值内容的另一个异常 |
[编辑] 缺陷报告
以下行为变更缺陷报告已追溯应用于以前发布的 C++ 标准。
DR | 应用于 | 发布的行为 | 正确行为 |
---|---|---|---|
LWG 471 | C++98 | 调用 what() 后的效果 实现定义的 |
要求与原始相同 what() 如果动态类型相同 |