程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> 利用 C++ 11 特性實現多線程計數器

利用 C++ 11 特性實現多線程計數器

編輯:C++入門知識

利用 C++ 11 特性實現多線程計數器


許多並行計算程序,需要確定待計算數據的編號,或者說,多線程間通過編號而耦合。此時,通過利用C++ 11提供的atomic_?type類型,可實現多線程安全的計數器,從而,降低多線程間的耦合,以便於書寫多線程程序。

利用 C++ 11 特性實現多線程計數器

以計數器實現為例子,演示了多線程計數器的實現技術方法,代碼如下:

  1. //目的: 測試利用C++ 11特性實現計數器的方法 
  2. //操作系統:ubuntu 14.04 
  3. //publish_date: 2015-1-31 
  4. //注意所使用的編譯命令: g++ -Wl,--no-as-needed -std=c++0x counter.cpp -lpthread 
  5. #include <iostream> 
  6. #include <atomic> 
  7. #include <thread> 
  8. #include <vector> 
  9.  
  10. using namespace std; 
  11.  
  12. atomic_int Counter(0); 
  13. int order[400]; 
  14.  
  15. void work(int id) 
  16.     int no; 
  17.     for(int i = 0; i < 100; i++) { 
  18.         no = Counter++; 
  19.         order[no] = id; 
  20.     } 
  21.  
  22. int main(int argc, char* argv[]) 
  23.     vector<thread> threads; 
  24.     //創建多線程訪問計數器 
  25.     for (int i = 0; i != 4; ++i) 
  26.         //線程工作函數與線程標記參數 
  27.         threads.push_back(thread(work, i)); 
  28.     for (auto & th:threads) 
  29.         th.join(); 
  30.     //最終的計數值 
  31.     cout << "final :" << Counter << endl; 
  32.     //觀察各線程的工作時序 
  33.     for(int i = 0; i < 400; i++) 
  34.         cout << "[" << i << "]=" << order[i] << " "; 
  35.     return 0; 

注意編譯命令的參數,尤其,-lpthread

否則,若無該鏈接參數,則編譯不會出錯,但會發生運行時錯誤:

terminate called after throwing an instance of ‘std::system_error’

what(): Enable multithreading to use std::thread: Operation not permitted

已放棄 (核心已轉儲)



  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved