摘要: 逐步更新中~~~,参考书籍《C++并发编程实战(第2版)》,不照搬书,只写理解感悟。 引入头文件 #include <thread> 线程启动 std::thread t(my_func); 若需等待线程执行完毕,才继续之后的代码,用join if (t.joinable()) { t.join() 阅读全文
posted @ 2023-11-18 17:15 夕西行 阅读(11) 评论(0) 推荐(0) 编辑