std::future_error::operator=
来自 cppreference.com
< cpp | thread | future error
future_error& operator=( const future_error& other ) noexcept; |
(自 C++11 起) | |
使用 other 的内容分配内容。如果 *this 和 other 都有动态类型 std::future_error
,那么赋值后 std::strcmp(what(), other.what()) == 0。
[edit] 参数
other | - | 要分配的另一个 future_error 对象 |
[edit] 返回值
*this
[edit] 示例
本节内容不完整 原因:没有示例 |