在C++中,有以下几种方式可以创建多线程:
#include <iostream>
#include <thread>
void foo() {
std::cout << "Hello from thread!" << std::endl;
}
int main() {
std::thread t(foo);
t.join(); // 等待线程结束
return 0;
}
#include <iostream>
#include <pthread.h>
void* foo(void*) {
std::cout << "Hello from thread!" << std::endl;
return nullptr;
}
int main() {
pthread_t thread;
pthread_create(&thread, nullptr, foo, nullptr);
pthread_join(thread, nullptr); // 等待线程结束
return 0;
}
#include <iostream>
#include <windows.h>
DWORD WINAPI foo(LPVOID) {
std::cout << "Hello from thread!" << std::endl;
return 0;
}
int main() {
HANDLE thread = CreateThread(nullptr, 0, foo, nullptr, 0, nullptr);
WaitForSingleObject(thread, INFINITE); // 等待线程结束
CloseHandle(thread);
return 0;
}
无论使用哪种方式创建线程,都需要注意线程的同步和互斥,以避免数据竞争和其他问题。