c++ 线程使用
摘要:
C++中的线程可以通过标准库提供的thread类实现。该类提供了创建和管理线程的方法和函数。 创建线程的方法: #include <thread> ... // 创建一个线程,其执行函数为func1,传递参数为arg1 std::thread t1(func1, arg1); // 创建一个线程,其 阅读全文
posted @ 2023-03-10 09:51 百足Coder 阅读(198) 评论(0) 推荐(0) 编辑