- 新增现代 C++ 教程的 Preface 章节,包括英文和中文版本 - 添加 C++ Primer 练习代码 - 新增 Learn C++ 教程的 C++ 开发简介章节 - 添加头文件解析文档 - 更新 mkdocs.yml,包含新教程的目录结构 - 修改项目设置,使用 Python 3.10环境
44 lines
734 B
C++
44 lines
734 B
C++
#include <atomic>
|
|
#include <thread>
|
|
#include <iostream>
|
|
|
|
class mutex {
|
|
std::atomic<bool> flag{false};
|
|
|
|
public:
|
|
void lock()
|
|
{
|
|
while (flag.exchange(true, std::memory_order_relaxed));
|
|
std::atomic_thread_fence(std::memory_order_acquire);
|
|
}
|
|
|
|
void unlock()
|
|
{
|
|
std::atomic_thread_fence(std::memory_order_release);
|
|
flag.store(false, std::memory_order_relaxed);
|
|
}
|
|
};
|
|
|
|
int a = 0;
|
|
|
|
int main() {
|
|
|
|
mutex mtx_a;
|
|
|
|
std::thread t1([&](){
|
|
mtx_a.lock();
|
|
a += 1;
|
|
mtx_a.unlock();
|
|
});
|
|
std::thread t2([&](){
|
|
mtx_a.lock();
|
|
a += 2;
|
|
mtx_a.unlock();
|
|
});
|
|
|
|
t1.join();
|
|
t2.join();
|
|
|
|
std::cout << a << std::endl;
|
|
return 0;
|
|
} |