Описание тега stdthread
NoneStd::thread is a C++11 standard library type which runs a function a new thread
std::thread
is a C++11 standard library type which creates a new thread and runs a function (or other callable object) in that new thread.
Include the <thread>
header to use std::thread
.