热门
#include <iostream> #include <thread> using namespace std; void hello() { std::cout << "Hello Concurrent World\n"; } int main() { thread t(hello); t.join(); }