Biblioteca atómica de C ++: bandera

Descripción

Es el tipo atómico booleano sin bloqueo.

Declaración

A continuación se muestra la declaración de std :: atomic_flag.

class atomic_flag;

Parámetros

ninguna

Valor devuelto

ninguna

Excepciones

ninguna

Ejemplo

En el siguiente ejemplo 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;
}

La salida de muestra debería ser así:

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