Warnings
The Challenge of
detach
: Of course you can uset.detach()
instead oft.join()
in the last program. The threadt
is not joinable any more; therefore, its destructor didn’t callstd::terminate
. But now you have another issue. The program behaviour is undefined because the main program may complete before the threadt
has time to complete its workpackage; therefore, its lifetime is too short to display the id. For more details, see lifetime issues of variables.
Tips
🔑
scoped_thread
by Anthony WilliamsIf it’s too bothersome for you to manually take care of the lifetime of your threads, you can encapsulate a
std::thread
in your own wrapper class. This class should automatically call join in its destructor. Of course you can go the other way and call detach, but there is an issue with detach.Anthony Williams created such a useful class and presented it in his excellent book Concurrency in Action. He called the wrapper
scoped_thread
.scoped_thread
gets a threadt
in its constructor and checks ift
is still joinable. If the threadt
passed into the constructor is not joinable anymore, there is no need for thescoped_thread
. Ift
is joinable, the destructor callst.join()
. Because the copy constructor and copy assignment operator are declared asdelete
, instances ofscoped_thread
can not be copied to or assigned from.
Get hands-on with 1400+ tech skills courses.