c++ constructors and concurrency

Viewed 1023

I've been thinking about writing a container class to control access to a complex data structure that will have use in a multi-threaded environment.

And then the question occurred to me:

Is there ever a situation where c++ constructors must be thread-safe?

3 Answers
Related