是的,C++在Linux操作系统上完全支持多线程编程
要在Linux上的C++中使用多线程,您需要包含<thread>
头文件,并使用C++标准库提供的线程类std::thread
。下面是一个简单的示例,展示了如何在C++中使用多线程:
#include <iostream>
#include <thread>
void print_hello() {
std::cout << "Hello from thread " << std::this_thread::get_id() << std::endl;
}
int main() {
std::thread t1(print_hello);
std::thread t2(print_hello);
t1.join();
t2.join();
return 0;
}
在这个示例中,我们创建了两个线程t1
和t2
,它们都执行print_hello
函数。std::this_thread::get_id()
函数用于获取当前线程的ID。最后,我们使用join()
方法等待两个线程完成。