Descrição
É o tipo atômico booleano livre de bloqueio.
Declaração
A seguir está a declaração para std :: atomic_flag.
class atomic_flag;
Parâmetros
Nenhum
Valor de retorno
Nenhum
Exceções
Nenhum
Exemplo
No exemplo abaixo para std :: atomic_flag.
#include <iostream>
#include <typeinfo>
#include <exception>
class Polymorphic {virtual void member(){}};
int main () {
try {
Polymorphic * pb = 0;
typeid(*pb);
} catch (std::exception& e) {
std::cerr << "exception caught: " << e.what() << '\n';
}
return 0;
}
O exemplo de saída deve ser assim -
Output from thread 0
Output from thread 0
Output from thread 0
Output from thread 0
Output from thread 0
Output from thread 0
Output from thread 0
....................