CPlusPlusThings/concurrency/concurrency_v1/chapter1/1_helloworld.cpp
Light-City 16c12a3bc6 update
2020-03-03 10:00:10 +08:00

20 lines
395 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// Created by light on 19-11-5.
//
#include <iostream>
#include <thread>
#include <unistd.h>
using namespace std;
void hello() {
cout << "hello world" << endl;
}
int main() {
thread t(hello);
t.join(); // must add this line otherwise will failed!
// 需要注意的是线程对象执行了join后就不再joinable了所以只能调用join一次。
return 0;
}