Namespaces
Variants
Actions

std::future<T>::operator=

From cppreference.com
< cpp‎ | thread‎ | future
 
 
Concurrency support library
(C++11)
(C++20)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++17)
(C++11)
(C++11)
(C++17)
(C++11)
(C++14)
(C++11)
(C++11)
(C++11)
(C++11)
(C++20)
(C++20)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++26)
(C++26)
(C++26)
(C++26)
(C++11)
(C++20)
(C++11)
(C++11)(deprecated in C++20)
(C++11)(deprecated in C++20)
(C++11)
(C++11)(deprecated in C++26)
 
 
future& operator=( future&& other ) noexcept;
(1) (since C++11)
future& operator=( const future& other ) = delete;
(2) (since C++11)

Assigns the contents of another future object.

1) Releases any shared state and move-assigns the contents of other to *this. After the assignment, other.valid() == false and this->valid() will yield the same value as other.valid() before the assignment.

[edit] Parameters

other - a std::future that will transfer state to *this

[edit] Return value

*this

Retrieved from "https://en.cppreference.com/mwiki/index.php?title=cpp/thread/future/operator%3D&oldid=161134"

AltStyle によって変換されたページ (->オリジナル) /