std::promise::promise
De cppreference.com
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
<metanoindex/>
<tbody> </tbody> promise(); |
(1) | (desde C++11) |
template< class Alloc > promise( std::allocator_arg_t, const Alloc& alloc ); |
(2) | (desde C++11) |
promise( promise&& other ); |
(3) | (desde C++11) |
promise( const promise& other ) = delete; |
(4) | (desde C++11) |
Constrói um objeto
promise.Original:
Constructs a
promise object.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)
Construtor padrão. Constrói a promessa com um estado vazio compartilhada.
Original:
Default constructor. Constructs the promise with an empty shared state.
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)
Constrói a promessa com um estado vazio compartilhada. O estado compartilhado é alocado utilizando
alloc. Alloc deve atender aos requisitos de Allocator.Original:
Constructs the promise with an empty shared state. The shared state is allocated using
alloc. Alloc must meet the requirements of Allocator.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)
Mova construtor. Constrói a promessa com o estado compartilhado de
other usando a semântica de movimento. other está em estado válido, mas indefinido depois.Original:
Move constructor. Constructs the promise with the shared state of
other using move semantics. other is in valid, but undefined state afterwards.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.
4)
promise não é copiável.Original:
promise is not copyable.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.
Parâmetros
| alloc | - | alocador de usar para alocar o estado compartilhado
Original: allocator to use to allocate the shared state The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| other | - | outro
promise adquirir o estado deOriginal: another promise to acquire the state fromThe 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)
(Nenhum)
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.
3)
`