Tagged Questions
2
votes
3answers
542 views
Initialize-On-Demand idiom vs simple static initializer in Singleton implementation
Is the Initialize-On-Demand idiom really necessary when implementing a thread safe singleton using static initialization, or would a simple static declaration of the instance suffice?
Simple ...
14
votes
7answers
3k views
Thread-safe initialization of function-local static const objects
This question made me question a practice I had been following for years.
For thread-safe initialization of function-local static const objects I protect the actual construction of the object, but ...