c++11 多线程传参和生产者消费者实现
生活随笔
收集整理的這篇文章主要介紹了
c++11 多线程传参和生产者消费者实现
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
普通函數傳參和成員函數傳參
#include <iostream> #include <thread> #include <windows.h> void func(int x) {for (int i = 1; i <= 10; i++) {printf("%d\n", x);Sleep(100);} }class A{ public:void func(int x) {for (int i = 1; i <= 10; i++) {printf("%d\n", 2);Sleep(100);}} }; int main() {A a;std::thread(&A::func, &a, 2).detach(); // 成員函數多線程這樣寫std::thread(func, 1).detach();getchar(); // 如果主進程結束那么子線程也會死return 0; }生產者消費者
#include <iostream> #include <thread> #include <mutex> #include <vector> #include <windows.h>std::vector<int> data; // 臨界區 std::mutex mux; // 全局互斥鎖/** “生產者-消費者”問題的實現,我的理解是:通過競爭互斥鎖來間接實現對臨界區的互斥訪問。 同一時間段內,只有一個線程得到了 mux 互斥鎖,那么接下來對臨界區的操作自然也是互斥的,直到釋放這個互斥鎖。 **/ void product_thread(){while(true){std::unique_lock<std::mutex> lock(mux);if (data.size() >= 5) {lock.unlock();continue;}data.push_back(1);printf("----生產\n");lock.unlock();Sleep(200);} }void consume_thread(){while (true){std::unique_lock<std::mutex> lock(mux);if(data.empty()) {lock.unlock();continue;}printf("消耗\n");data.pop_back();lock.unlock();Sleep(1000);} }int main() {std::thread thread_product(&product_thread);std::thread thread (&consume_thread);thread_product.join();thread.join();return 0; }總結
以上是生活随笔為你收集整理的c++11 多线程传参和生产者消费者实现的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: wxWidgets 编译 ICON 资源
- 下一篇: 数据传输示例 Moves.asm