Thread-Safe Initialization: Constant Expressions
This lesson gives an overview of thread-safe initialization in the perspective of concurrency in C++ with Constant Expressions
Constant expressions are expressions that the compiler can evaluate at compile time; they are implicitly thread-safe. Placing the keyword constexpr
in front of a ...