Are threads part of standard C++?

c++, c++11, multithreading

Solution

Is there thread handling in new C++ standard?

Yes, as of C++11 there is `std::thread`, `std::async` and others.

And if i will write multithreaded apps does it mean application will use more cores of cpu? ( if available )

Only if you use them right.

Problem

Is there thread handling in new C++ standard? And if i will write multithreaded apps does it mean application will use more cores of cpu? ( if available )

Original source