thread(C++11)

C++11 开始将thread引入标准库,使用 std::thread 可以很方便的创建一个线程,线程自 std::thread 构造成功时就开始运行了

Last updated