std::shared_future::operator=
Da cppreference.com.
< cpp | thread | shared future
![]() | Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate. La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
(1) | (dal C++11) | |
(1) | (dal C++11) | |
shared_future( future<R>&& other ); | (1) | (dal C++11) |
shared_future( shared_future&& other ); | (1) | (dal C++11) |
Costruisce un nuovo
shared_future
.Original:
Constructs a new
shared_future
.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
1)
Costruttore di default. Costruisce un futuro vuoto condivisa, che non fa riferimento ad uno stato comune, che è valid()==false.
Original:
Default constructor. Constructs an empty shared future, that doesn't refer to a shared state, that is valid()==false.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
2)
Costruisce un futuro comune che si riferisce allo stesso stato condiviso, come
other
, se c'è qualche.Original:
Constructs a shared future that refers to the same shared state, as
other
, if there's any.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
3-4)
Sposta costruttore. Trasferisce lo stato condiviso detenute da
other
a *this. Dopo la other->valid()==false costruzione, anche valid() restituisce lo stesso valore other.valid() avrebbe restituito prima della costruzione.Original:
Move constructor. Transfers the shared state held by
other
to *this. After the construction, other->valid()==false, also valid() returns the same value as other.valid() would have returned before the construction.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[modifica]Parametri
other | - | un altro oggetto per inizializzare futuro con Original: another future object to initialize with The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[modifica]Eccezioni
1)
(Nessuno)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
2)