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。
[編輯] 引數
其他 | - | 另一個要賦值的 future_error 物件 |
[編輯] 返回值
*this
[編輯] 示例
本節不完整 原因:無示例 |