Introduction
Thread Class
Future Class
Up until now, our applications always follow a single sequence of steps (thread)
Only one line of code runs at any given time
This poses two problems:
→ Blocking operations halt execution
→ Parallel algorithms are executed in serial fashion
A multi-threaded application is an application in which multiple lines of code run concurrently, possibly using different CPUs
In this case, the application itself is the one managing its threads
This is not the same as multi-tasking, which is normally managed by the operating system (OS)
The C++11 standard included a thread library that contains a class called thread
Before, one needed to use system specific libraries
A thread object represents an actual thread of execution
main()
runs concurrently with its threads
If main()
terminates, its threads are also terminated*
To create a thread, one can use the syntax:
std::thread(callable, list_arguments)
The callable
can be:
→ function pointer
→ function object
→ lambda expression