- VisualStudio2022插件的安装及使用-编程手把手系列文章
- pprof-在现网场景怎么用
- C#实现的下拉多选框,下拉多选树,多级节点
- 【学习笔记】基础数据结构:猫树
在多线程开发中,经常会遇到数据同步,很多情况下用锁都是一个很好的选择。C++中常用的锁主要有下面几种:
std::mutex
)1 #include <iostream> 2 #include <mutex> 3 #include <thread> 4 5 std::mutex m; 6 int counter = 0; 7 8 void increment() { 9 m.lock(); 10 counter++; 11 std::cout << "Counter value in thread " << std::this_thread::get_id() << " is " << counter << std::endl; 12 m.unlock(); 13 } 14 15 int main() { 16 std::thread t1(increment); 17 std::thread t2(increment); 18 t1.join(); 19 t2.join(); 20 return 0; 21 }
std::recursive_mutex
)1 #include <iostream> 2 #include <mutex> 3 #include <thread> 4 5 std::recursive_mutex rm; 6 7 void recursiveFunction(int count) { 8 rm.lock(); 9 if (count > 0) { 10 std::cout << "Recursive call with count = " << count << std::endl; 11 recursiveFunction(count - 1); 12 } 13 rm.unlock(); 14 } 15 16 int main() { 17 std::thread t(recursiveFunction, 3); 18 t.join(); 19 return 0; 20 }
。
std::shared_mutex
) C++17开始才有1 #include <iostream> 2 #include <shared_mutex> 3 #include <thread> 4 #include <vector> 5 6 std::shared_mutex smtx; 7 int shared_data = 0; 8 9 void read_data() { 10 std::shared_lock<std::shared_mutex> lock(smtx); 11 std::cout << "Read data: " << shared_data << std::endl; 12 } 13 14 void write_data(int new_value) { 15 std::unique_lock<std::shared_mutex> lock(smtx); 16 shared_data = new_value; 17 std::cout << "Wrote data: " << shared_data << std::endl; 18 } 19 20 int main() { 21 std::vector<std::thread> read_threads; 22 for (int i = 0; i < 5; i++) { 23 read_threads.push_back(std::thread(read_data)); 24 } 25 std::thread write_thread(write_data, 10); 26 for (auto& t : read_threads) { 27 t.join(); 28 } 29 write_thread.join(); 30 return 0; 31 }
。
std::timed_mutex
)std::mutex
的扩展。除了具备std::mutex
的基本功能外,它还允许线程在尝试获取锁时设置一个超时时间。1 #include <iostream> 2 #include <chrono> 3 #include <thread> 4 #include <mutex> 5 6 std::timed_mutex tm; 7 8 void tryLockFunction() { 9 if (tm.try_lock_for(std::chrono::seconds(1))) { 10 std::cout << "Acquired lock" << std::endl; 11 std::this_thread::sleep_for(std::chrono::seconds(2)); 12 tm.unlock(); 13 } else { 14 std::cout << "Could not acquire lock in time" << std::endl; 15 } 16 } 17 18 int main() { 19 std::thread t1(tryLockFunction); 20 std::thread t2(tryLockFunction); 21 t1.join(); 22 t2.join(); 23 return 0; 24 }
。
std::recursive_timed_mutex
)1 #include <iostream> 2 #include <chrono> 3 #include <thread> 4 #include <mutex> 5 6 std::recursive_timed_mutex rtm; 7 8 void recursiveTryLockFunction(int count) { 9 if (rtm.try_lock_for(std::chrono::seconds(1))) { 10 std::cout << "Recursive acquired lock, count = " << count << std::endl; 11 if (count > 0) { 12 recursiveTryLockFunction(count - 1); 13 } 14 rtm.unlock(); 15 } else { 16 std::cout << "Could not recursively acquire lock in time" << std::endl; 17 } 18 } 19 20 int main() { 21 std::thread t(recursiveTryLockFunction, 3); 22 t.join(); 23 return 0; 24 }
。
std::atomic_flag
实现)1 #include <iostream> 2 #include <atomic> 3 #include <thread> 4 5 std::atomic_flag spinLock = ATOMIC_FLAG_INIT; 6 7 void criticalSection() { 8 while (spinLock.test_and_set()) { 9 // 自旋等待 10 } 11 std::cout << "Entered critical section" << std::endl; 12 // 临界区操作 13 spinLock.clear(); 14 } 15 16 int main() { 17 std::thread t1(criticalSection); 18 std::thread t2(criticalSection); 19 t1.join(); 20 t2.join(); 21 return 0; 22 }
。
std::condition_variable
)配合互斥锁用于同步(严格来说条件变量不是锁,但常一起用于线程同步场景)1 #include <iostream> 2 #include <thread> 3 #include <mutex> 4 #include <condition_variable> 5 #include <queue> 6 7 std::mutex mtx; 8 std::condition_variable cv; 9 std::queue<int> buffer; 10 const int bufferSize = 5; 11 12 void producer() { 13 for (int i = 0; i < 10; ++i) { 14 std::unique_lock<std::mutex> lock(mtx); 15 while (buffer.size() == bufferSize) { 16 cv.wait(lock); 17 } 18 buffer.push(i); 19 std::cout << "Produced: " << i << std::endl; 20 cv.notify_all(); 21 } 22 } 23 24 void consumer() { 25 for (int i = 0; i < 10; ++i) { 26 std::unique_lock<std::mutex> lock(mtx); 27 while (buffer.empty()) { 28 cv.wait(lock); 29 } 30 int data = buffer.front(); 31 buffer.pop(); 32 std::cout << "Consumed: " << data << std::endl; 33 cv.notify_all(); 34 } 35 } 36 37 int main() { 38 std::thread producerThread(producer); 39 std::thread consumerThread(consumer); 40 producerThread.join(); 41 consumerThread.join(); 42 return 0; 43 }
。
最后此篇关于C++中的各种锁的文章就讲到这里了,如果你想了解更多关于C++中的各种锁的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
一、公平锁和非公平锁 1.1、公平锁和非公平锁的概述 公平锁:指多个线程按照申请锁的顺序来获取锁。 非公平锁:指在多线程获取锁的顺序并不是按照申请锁的顺序,有可能后申请的线程比先申请的线程优先获取到锁
阅读目录 1、简介 2、分类 3、全局锁 4、表级锁 5、表锁 6、元数据锁
因此,在我编写的程序中,我有三个函数,为了简单起见,我们将它们称为 A、B 和 C。每个函数都需要访问资源X才能工作。 限制是A和B不允许同时运行并且必须适当同步。但是,C 可以与 A 或 B 同时运
我听说过这些与并发编程相关的词,但是锁、互斥量和信号量之间有什么区别? 最佳答案 锁只允许一个线程进入被锁定的部分,并且该锁不与任何其他进程共享。 互斥锁与锁相同,但它可以是系统范围的(由多个进程共享
这个问题已经有答案了: What is an efficient way to implement a singleton pattern in Java? [closed] (29 个回答) 已关闭
这个问题已经有答案了: What is an efficient way to implement a singleton pattern in Java? [closed] (29 个回答) 已关闭
我对标题中的主题有几个问题。首先,假设我们使用 JDBC,并且有 2 个事务 T1 和 T2。在 T1 中,我们在一个特定的行上执行 select 语句。然后我们对该行执行更新。在事务 T2 中,我们
我希望我的函数只运行一次。这意味着如果多个线程同时调用它,该函数将阻塞所有线程,只允许它运行。 最佳答案 听起来您希望存储过程进行同步。为什么不直接将同步放在应用程序本身中。 pthread_mute
if (runInDemoMode) { lock (this) { //Initalization of tables dCreator.create
我相信无论使用什么语言都可以考虑我的问题,但是为了有一些“ anchor ”,我将使用 Java 语言来描述它。 让我们考虑以下场景:我有一个扩展 Thread 的类 PickyHost 及其实例 p
我知道异步不是并行的,但我现在遇到了一个非常有趣的情况。 async function magic(){ /* some processing here */ await async () =
我们正在使用 Scala、Play 框架和 MongoDB(以 ReactiveMongo 作为我们的驱动程序)构建一个网络应用程序。应用程序架构是端到端的非阻塞。 在我们代码的某些部分,我们需要访问
我需要一个简单的锁,JavaME 超时(concurrent.lock 的反向移植需要完整的 Java 1.3)。 如果其他人已经为 JavaME 发布了经过测试的锁定代码,我宁愿使用它。 锁定是出了
根据 boost : To access the object, a weak_ptr can be converted to a shared_ptr using the shared_ptr co
关于 Mutex 和 Critical 部分之间的区别存在一个问题,但它也不处理 Locks。 所以我想知道临界区是否可以用于进程之间的线程同步。 还有信号状态和非信号状态的含义 最佳答案 在 Win
锁 最为常见的应用就是 高并发的情况下,库存的控制。本次只做简单的单机锁介绍。 直接看代码: 每请求一次库存-1. 假如库存1000,在1000个人请求之后,库存将变为0。
线程和进程 1、线程共享创建它的进程的地址空间,进程有自己的地址空间 2、线程可以访问进程所有的数据,线程可以相互访问 3、线程之间的数据是独立的 4、子进程复制线程的数据 5、子进程启动
**摘要:**细心的你也一定关注到,有的网址是https开头的,有的是http。https开头的网站前面,会有一把小锁。这是为什么呢? 本文分享自华为云社区《还不知道SSL证书已经是刚需了?赶快来了解
试图在 C 中实现一个非常简单的互斥锁(锁)我有点困惑。我知道互斥锁类似于二进制信号量,除了互斥锁还强制执行释放锁的线程的约束,必须是最近获得它的同一线程。我对如何跟踪所有权感到困惑? 这是我到目前为
在阅读了很多与上述主题相关的文章和答案之后,我仍然想知道 SQL Server 数据库引擎在以下示例中是如何工作的: 假设我们有一个名为 t3 的表: create table t3 (a int ,
我是一名优秀的程序员,十分优秀!