#include <iostream>
#include <thread>
using namespace std;
thread&& launch(){
thread launchee([](){
this_thread::sleep_for(chrono::milliseconds(280));
cout<<"HA!"<<endl;
});
return move(launchee);
}
int main(int argc, char **argv){
thread mine(launch());
mine.join();
}
编译g++-4.6 -std=c++0x 1.cpp -o e1 -pthread
输出“在没有活动异常的情况下终止调用”,然后程序中止。
这应该有效,不是吗?