Espaços nominais
Variantes
Acções

std::promise::set_value

Da cppreference.com
< cpp‎ | thread‎ | promise

 
 
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)
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)
 
std::promise
Funções de membro
Original:
Member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
promise::promise
promise::~promise
promise::operator=
promise::swap
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.
promise::get_future
Definir o resultado
Original:
Setting the result
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
promise::set_value
promise::set_value_at_thread_exit
promise::set_exception
promise::set_exception_at_thread_exit
 
void set_value(const R& value );
(1) (único membro da modelo promise genérico)
(desde C++11)
void set_value( R&& value );
(2) (único membro da modelo promise genérico)
(desde C++11)
void set_value( R& value );
(3) (único membro da promise<R&> especialização modelo)
(desde C++11)
void set_value()
(4) (único membro da promise<void> especialização modelo)
(desde C++11)
Armazena o value no estado compartilhado e torna o estado de pronto.
Original:
Stores the value into the shared state and makes the state ready.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
A operação é atômica, ou seja, ele se comporta como se adquirir um mutex único associado com o objeto promessa ao atualizar o objeto promessa.
Original:
The operation is atomic, i.e. it behaves as though they acquire a single mutex associated with the promise object while updating the promise object.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Uma exceção é lançada se não há nenhum estado compartilhado ou o estado compartilhado já armazena um valor ou uma exceção.
Original:
An exception is thrown if there is no shared state or the shared state already stores a value or exception.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Índice

[editar]Parâmetros

value -
valor para armazenar no estado compartilhado
Original:
value to store in 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.

[editar]Valor de retorno

(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.

[editar]Exceções

std::future_error com as seguintes condições:
Original:
std::future_error on the following conditions:
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
  • *this não tem estado compartilhado. A categoria de erro é definido para no_state.
    Original:
    *this has no shared state. The error category is set to no_state.
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.
  • O estado compartilhado já armazena um valor ou uma exceção. A categoria de erro é definido para promise_already_satisfied.
    Original:
    The shared state already stores a value or exception. The error category is set to promise_already_satisfied.
    The text has been machine-translated via Google Translate.
    You can help to correct and verify the translation. Click here for instructions.
Além disso:
Original:
Additionally:
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
1-2)
Qualquer exceção lançada pelo construtor de cópia de value
Original:
Any exception thrown by the copy constructor of value
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
3)
Qualquer exceção lançada pelo construtor movimento de value
Original:
Any exception thrown by the move constructor of value
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[editar]Exemplo

[editar]Veja também

define o resultado para indicar uma excepção
Original:
sets the result to indicate an exception
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(função pública membro)[edit]
close