91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何在Linux C++項目中實現線程間的異步通信

發布時間:2024-11-18 10:09:20 來源:億速云 閱讀:83 作者:小樊 欄目:編程語言

在 Linux C++ 項目中實現線程間的異步通信,可以使用以下幾種方法:

  1. 互斥鎖(Mutex):互斥鎖是一種同步原語,用于確保多個線程在訪問共享資源時不會發生沖突。C++11 提供了 std::mutex 類來實現互斥鎖。
#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;
}
  1. 條件變量(Condition Variable):條件變量是一種同步原語,用于在線程之間傳遞消息。C++11 提供了 std::condition_variable 類來實現條件變量。
#include <iostream>
#include <thread>
#include <mutex>
#include <condition_variable>

std::mutex mtx;
std::condition_variable cv;
bool ready = false;

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;
}
  1. 管道(Pipe):管道是一種進程間通信(IPC)機制,也可以用于線程間通信。C++11 提供了 std::pipe 類來實現管道。
#include <iostream>
#include <thread>
#include <vector>
#include <unistd.h>

int pipe_fd[2];

void thread_func(int fd) {
    char buffer[1024];
    read(fd, buffer, sizeof(buffer)); // 從管道讀取數據
    std::cout << "Thread ID: " << std::this_thread::get_id() << " received: " << buffer << std::endl;
}

int main() {
    if (pipe(pipe_fd) == -1) {
        std::cerr << "Error creating pipe" << std::endl;
        return 1;
    }

    std::thread t1(thread_func, pipe_fd[0]);
    std::thread t2(thread_func, pipe_fd[0]);

    write(pipe_fd[1], "Hello from main thread!", strlen("Hello from main thread!")); // 向管道寫入數據
    close(pipe_fd[1]);

    t1.join();
    t2.join();

    close(pipe_fd[0]);

    return 0;
}
  1. 消息隊列(Message Queue):消息隊列是一種進程間通信(IPC)機制,也可以用于線程間通信。C++ 提供了 Boost.Interprocess 庫來實現消息隊列。
#include <iostream>
#include <thread>
#include <boost/interprocess/ipc/message_queue.hpp>

boost::interprocess::message_queue mq;

void thread_func() {
    const char* message = "Hello from thread!";
    mq.send(message, strlen(message), 0); // 發送消息到消息隊列
}

int main() {
    mq.open("my_message_queue", boost::interprocess::open_or_create, 65536); // 打開或創建消息隊列

    std::thread t1(thread_func);
    std::thread t2(thread_func);

    char buffer[65536];
    size_t received_size = mq.receive(buffer, sizeof(buffer), 0); // 從消息隊列接收消息
    std::cout << "Thread ID: " << std::this_thread::get_id() << " received: " << buffer << std::endl;

    mq.close(); // 關閉消息隊列

    t1.join();
    t2.join();

    return 0;
}

這些方法可以根據項目需求選擇使用。互斥鎖和條件變量適用于線程間的同步通信,而管道和消息隊列適用于線程間的異步通信。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

c++
AI

静安区| 凤翔县| 休宁县| 连州市| 水城县| 东源县| 栾川县| 洛宁县| 镇坪县| 四平市| 南川市| 额济纳旗| 封开县| 罗城| 北安市| 溧阳市| 武汉市| 会同县| 巫山县| 定安县| 射洪县| 原阳县| 永吉县| 高平市| 洛扎县| 百色市| 阿拉善左旗| 阿拉尔市| 齐河县| 九江县| 望都县| 屏边| 赣州市| 温泉县| 肇州县| 金秀| 高平市| 安化县| 丽江市| 静海县| 张家港市|