将原子变量传递给函数

时间:2015-03-04 01:23:14

标签: c++ c++11 atomic

我正在尝试将原子变量传递给函数,如下所示:

 // function factor receives an atomic variable 
 void factor(std::atomic<int> ThreadsCounter)
 {
  .........
 }


 // main starts here
 int main()
 {
 // Atomic variable declaration
 std::atomic<int> ThreadsCounter(0);
 // passing atomic variable to the function factor through a thread
 Threadlist[0] = std::thread (factor, std::ref(ThreadsCounter));
 Threadlist[0].join();
 return 0;
 }

运行上面的代码时,我收到以下错误:

  

错误2错误C2280:'std :: atomic :: atomic(const std :: atomic&amp;)':尝试引用已删除的函数c:\ program files(x86)\ microsoft visual studio 12.0 \ vc \ include \ functional 1149 1 klu_factor

任何人都知道如何解决这个问题?非常感谢你的帮助。

1 个答案:

答案 0 :(得分:6)

函数factor按值获取ThreadsCounter参数,而std::atomic不是可复制构造的。

虽然您绑定了对线程函数的引用,但它正在尝试创建一个副本来传递函数。