Descrição
Ele substitui atomicamente o valor do objeto atômico e obtém o valor mantido anteriormente.
Declaração
A seguir está a declaração para std :: atomic :: exchange.
T exchange( T desired, std::memory_order order = std::memory_order_seq_cst );
C ++ 11
T exchange( T desired, std::memory_order order = std::memory_order_seq_cst ) volatile;
Parâmetros
Valor de retorno
Ele retorna o valor da variável atômica antes da chamada.
Exceções
No-noexcept - esta função de membro nunca lança exceções.
Exemplo
No exemplo abaixo para std :: atomic :: exchange.
#include <iostream>
#include <atomic>
#include <thread>
#include <vector>
std::atomic<bool> ready (false);
std::atomic<bool> winner (false);
void count1m (int id) {
while (!ready) {}
for (int i=0; i<1000000; ++i) {}
if (!winner.exchange(true)) { std::cout << "thread #" << id << " won!\n"; }
};
int main () {
std::vector<std::thread> threads;
std::cout << "spawning 10 threads that count to 1 million...\n";
for (int i=1; i<=10; ++i) threads.push_back(std::thread(count1m,i));
ready = true;
for (auto& th : threads) th.join();
return 0;
}