您好,登錄后才能下訂單哦!
在 Linux 中,C++11 提供了線程庫(kù)(
互斥鎖是一種同步原語,用于確保多個(gè)線程在訪問共享資源時(shí)不會(huì)發(fā)生沖突。當(dāng)一個(gè)線程獲得互斥鎖時(shí),其他線程必須等待該線程釋放鎖才能訪問共享資源。
#include <iostream>
#include <thread>
#include <mutex>
std::mutex mtx; // 全局互斥鎖
void thread_func() {
mtx.lock(); // 獲取互斥鎖
std::cout << "Thread ID: " << std::this_thread::get_id() << std::endl;
mtx.unlock(); // 釋放互斥鎖
}
int main() {
std::thread t1(thread_func);
std::thread t2(thread_func);
t1.join();
t2.join();
return 0;
}
條件變量是一種同步原語,用于在多個(gè)線程之間傳遞消息。它允許一個(gè)線程等待某個(gè)條件成立,同時(shí)釋放互斥鎖,讓其他線程有機(jī)會(huì)執(zhí)行并改變條件。當(dāng)條件成立時(shí),等待的線程將被喚醒并重新獲取互斥鎖。
#include <iostream>
#include <thread>
#include <mutex>
#include <condition_variable>
std::mutex mtx; // 全局互斥鎖
std::condition_variable cv; // 全局條件變量
bool ready = false; // 全局標(biāo)志位
void thread_func() {
std::unique_lock<std::mutex> lock(mtx); // 獲取互斥鎖
cv.wait(lock, []{ return ready; }); // 等待條件成立
std::cout << "Thread ID: " << std::this_thread::get_id() << std::endl;
}
int main() {
std::thread t1(thread_func);
std::thread t2(thread_func);
{
std::lock_guard<std::mutex> lock(mtx); // 獲取互斥鎖
ready = true; // 改變條件
}
cv.notify_all(); // 喚醒所有等待的線程
t1.join();
t2.join();
return 0;
}
原子操作是一種不可中斷的操作,可以確保在多線程環(huán)境下對(duì)共享數(shù)據(jù)的操作是線程安全的。原子操作通常用于實(shí)現(xiàn)計(jì)數(shù)器、標(biāo)志位等簡(jiǎn)單數(shù)據(jù)結(jié)構(gòu)。
#include <iostream>
#include <thread>
#include <atomic>
std::atomic<int> counter(0); // 全局原子計(jì)數(shù)器
void thread_func() {
for (int i = 0; i < 100; ++i) {
++counter; // 原子自增操作
}
}
int main() {
std::thread t1(thread_func);
std::thread t2(thread_func);
t1.join();
t2.join();
std::cout << "Counter: " << counter << std::endl;
return 0;
}
這些同步原語可以組合使用,以實(shí)現(xiàn)更復(fù)雜的線程同步場(chǎng)景。在實(shí)際編程中,需要根據(jù)具體需求選擇合適的同步機(jī)制。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。