...

/

Creation of Threads

Creation of Threads

This lesson gives an introduction on how to create threads in C++ using callable units such as functions and lambda functions.

We'll cover the following...

To launch a thread in C++, we have to include the <thread> header.

  • A thread std::thread represents an executable unit. This ...