首页 > 编程语言 > 详细

C++ thread operator= 右值引用 vector foreach

时间:2014-08-19 16:23:34      阅读:640      评论:0      收藏:0      [点我收藏+]

这是 thread 的construct定义:

default (1)
thread() noexcept;
initialization (2)
template <class Fn, class... Args>
explicit thread (Fn&& fn, Args&&... args);
copy [deleted] (3)
thread (const thread&) = delete;
move (4)
thread (thread&& x) noexcept;

可以看到thread是无法copy的,他的=操作符的定义:

move (1)
thread& operator= (thread&& rhs) noexcept;
copy [deleted] (2)
thread& operator= (const thread&) = delete;

只允许右值引用(http://stackoverflow.com/questions/3106110/what-are-move-semantics),所以如果要vector<thread> 必须要这么写:

std::vector<std::thread> threads;
  for (int i=1; i<=10; ++i)
    threads.push_back(std::thread(increase_global,1000));   
//分开写: thread t()
// thread.push_back(t) 就无法编译通过,因为要用到operator= ,而 thread只允许move semnantics,就是只允许右值引用

类似的 对于c++11 里的for each ,可以解释为 http://en.cppreference.com/w/cpp/language/range-for
{
auto && __range = range_expression ; 
for (auto __begin = begin_expr,
__end = end_expr; 
__begin != __end; ++__begin) { 
range_declaration = *__begin; // 这里需要operator=
loop_statement 

所以range for 也不可用于thread



 

C++ thread operator= 右值引用 vector foreach,布布扣,bubuko.com

C++ thread operator= 右值引用 vector foreach

原文:http://www.cnblogs.com/Sorean/p/3922221.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!