본문 바로가기
프로그래밍 언어/C,C++

C++에서 multithread 시작하기

by pagehit 2020. 7. 22.
반응형

.

#include <iostream>
#include <thread>

void hello() {
    std::cout << "Hello Concurrent World\n";
}

int main() {
    std::thread t(hello);
    t.join();
}

.

$ g++ -pthread test.cpp

 

 

반응형

댓글