Static Member Initialization Complications in Templated Classes
Static member initialization in C is a widely used technique, but it can become complex when dealing with templated classes. In non-templated classes, a nested helper struct can be employed for initialization, but this approach falls short when the enclosing class is templated.
Consider the following simplified example:
struct A
{
static std::string mA;
static InitHelper mInit;
static const std::string& getA() { return mA; }
};
std::string A::mA;
A::InitHelper A::mInit;
template
struct B
{
static std::string mB;
static InitHelper mInit;
static const std::string& getB() { return mB; }
static InitHelper& getHelper() { return mInit; }
};
template
std::string B::mB;
template
typename B::InitHelper B::mInit;
int main()
{
std::cout ::getB() ::getHelper(); // [2]
}
Expected Behavior:
When [1] is uncommented and [2] is commented, we would expect B
Actual Behavior:
Reason for the Discrepancy:
According to the ISO/IEC C 2003 standard, the template member is implicitly instantiated when referenced in a context that requires its definition to exist. However, static data member initialization (and any associated side effects) only occur when the static data member is explicitly used. This means that if a template member is only referenced in uninstantiated templates or in other contexts that do not require its full instantiation, its static data members will not be initialized.
In the example, B
Solution:
The standard proscribes that definitions of explicitly specialized class template static data members have ordered initialization, while other class template static data members have unordered initialization. To ensure consistent initialization order, one must use explicit specializations.
Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.
Copyright© 2022 湘ICP备2022001581号-3