I have been using anonymous namespaces to store local data and functions and wanted to know when the data is initialized? Is it when the application starts in the same way as static data or is it compiler dependent? For example:
// foo.cpp #include 'foo.h' namespace { const int SOME_VALUE = 42; } void foo::SomeFunc(int n) { if (n == SOME_VALUE) { ... } }
The question arises out of making some code thread-safe. In the above example I need to be certain that SOME_VALUE is initialized before SomeFunc is called for the first time.
C++ Standard, 3.6.2/1 :
This effectively means, even when another translation unit calls your SomeFunc function from outside, your SOME_VALUE constant will always be correctly initialized, because it’s initialized with a constant expression.
The only way for your function being called early (before main) is while initializing an object with dynamic initialiation. But by that time, according to the standard quote, the initialization of your POD variable is already done.