yohhoyの日記

技術的メモをしていきたい日記

2012-07-18から1日間の記事一覧

atomic変数のstore/load操作と代入/型変換

C++

C++11標準ライブラリのatomic変数std::atomic<T>について、型Tからatomic<T>への代入はstore操作に等しく、atomic<T>から型Tへの暗黙型変換はload操作に等しい*1。 #include <atomic> std::atomic<int> a; int x; a = 5; // a.store(5, std::memory_order_seq_cst); x = a; // x = </int></atomic></t></t></t>…