C++ 原子库 - 标志


描述

它是无锁布尔原子类型。

宣言

以下是 std::atomic_flag 的声明。

class atomic_flag;

参数

没有任何

返回值

没有任何

例外情况

没有任何

例子

在下面的 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;
}

示例输出应该是这样的 -

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
....................
原子.htm