Espaços nominais
Variantes
Ações

std::future::future

De cppreference.com

<metanoindex/>

 
 
Biblioteca de suporte a discussão
Threads
Original:
Threads
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
this_thread namespace
Original:
this_thread namespace
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
(C++11)
(C++11)
Exclusão mútua
Original:
Mutual exclusion
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
Gestão de bloqueio genérico
Original:
Generic lock management
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
(C++11)
(C++11)
(C++11)(C++11)(C++11)
Variáveis ​​de condição
Original:
Condition variables
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
Futuros
Original:
Futures
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
(C++11)
(C++11)
(C++11)
(C++11)
 
std::future
future::future
future::~future
future::operator=
future::share
Obtendo o resultado
Original:
Getting the result
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
future::get
Estado
Original:
State
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
future::valid
future::wait
future::wait_for
future::wait_until
 
<tbody> </tbody>
future();
(1) (desde C++11)
future( future&& other );
(2) (desde C++11)
future( const future& other ) = delete;
(3) (desde C++11)
Constrói um objeto std::future.
Original:
Constructs a std::future object.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
1)
Construtor padrão. Constrói um std::future sem estado compartilhado. Após a construção, valid() == false.
Original:
Default constructor. Constructs a std::future with no shared state. After construction, valid() == false.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
2)
Mova construtor. Constrói um std::future com o estado compartilhado de other usando a semântica de movimento. Após a construção, other.valid() == false.
Original:
Move constructor. Constructs a std::future with the shared state of other using move semantics. After construction, other.valid() == false.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
3) std::future is not CopyConstructible.

Parâmetros

other -
outro std::future para adquirir o estado compartilhado de
Original:
another std::future to acquire shared state from
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Exceções

1-2)
noexcept specification:  
<tbody> </tbody>
noexcept
  (desde C++11)