摘要: 1. 线程库的使用 创建进程 # include<iostream> # include<thread> //线程库头文件 using namespace std; void thread_1() { cout<<"子线程1"<<endl; } int thread_2(int x) { cout< 阅读全文
posted @ 2024-03-08 14:24 拾墨、 阅读(2) 评论(0) 推荐(0) 编辑