#include<chrono>#include<thread>usingnamespace std::literals;voidf(int n){for(int i =0; i <5;++i){printf("thread is running\n");++n;std::this_thread::sleep_for(10ms);}printf("n is %d\n", n);}intmain(){int n =0;std::jthread t(f, n +1);// t 在析构时结合}
停止使用
#include<thread>#include<chrono>usingnamespace std::literals;voidf(std::stop_token stoken,int n){while(!stoken.stop_requested()){printf("thread is running\n");++n;std::this_thread::sleep_for(10ms);}printf("thread is stop, n is %d\n", n);}intmain(){int n =0;std::jthread t(f, n);std::this_thread::sleep_for(50ms);auto st = t.get_stop_token();// 查询是否可停止printf("main, thead can stop %d\n", st.stop_possible());// 停止线程第一种方法t.request_stop();// 停止线程第二种方法// auto src = t.get_stop_source();// src.request_stop();// 查询是否已被请求停止printf("main, thead is requested stop %d\n", st.stop_requested());// t 在析构时自动停止并结合return0;}