标签:
1.直接在控制台输入 名字 或者 名字.exe即可运行程序
#include<iostream>// std::cout#include<thread>// std::thread#include<mutex>// std::mutex, std::lock_guard#include<stdexcept>// std::logic_errorstd::mutex mtx;void print_even(int x){if(x %2==0) std::cout << x <<" is even"<< std::endl;elsethrow(std::logic_error("not even"));}void print_thread_id(int id){try{// using a local lock_guard to lock mtx guarantees unlocking on destruction / exception: std::lock_guard<std::mutex> lck(mtx); print_even(id);}catch(std::logic_error&e){ std::cout <<"[exception caught]"<< e.what()<< std::endl;}}int main(){ std::thread threads[10];// spawn 10 threads:for(int i =0; i <10;++i) threads[i]= std::thread(print_thread_id, i +1);for(auto& th : threads) th.join(); std::cin.get();return0;}标签:
原文地址:http://www.cnblogs.com/gzxfd/p/5064565.html