是的,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()
方法等待兩個線程完成。