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
....................
atomic.htm
广告