std::bad_exception::operator=
来自 cppreference.com
< cpp | error | bad exception
bad_exception& operator=( const bad_exception& other ) throw(); |
(until C++11) | |
bad_exception& operator=( const bad_exception& other ) noexcept; |
(since C++11) | |
将 other 的内容赋值给 *this。 如果 *this 和 other 的动态类型都是 std::exception
,则赋值后 std::strcmp(what(), other.what()) == 0。 (since C++11)
[edit] 参数
other | - | 另一个要赋值的 bad_exception 对象 |
[edit] 返回值
*this.