Libreria atomica C ++ - Flag
Descrizione
È il tipo atomico booleano senza blocco.
Dichiarazione
Di seguito è riportata la dichiarazione per std :: atomic_flag.
class atomic_flag;
Parametri
nessuna
Valore di ritorno
nessuna
Eccezioni
nessuna
Esempio
Nell'esempio seguente per 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;
}
L'output di esempio dovrebbe essere così:
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
....................