Home > Backend Development > C++ > body text

Why Does Static Member Initialization in Templated Classes Behave Differently?

DDD
Release: 2024-10-28 08:57:02
Original
641 people have browsed it

 Why Does Static Member Initialization in Templated Classes Behave Differently?

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:

<code class="cpp">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<class T>
struct B
{
    static std::string mB;
    static InitHelper mInit;

    static const std::string& getB() { return mB; }
    static InitHelper& getHelper() { return mInit; }
};
template<class T>
std::string B<T>::mB;
template<class T>
typename B<T>::InitHelper B<T>::mInit;

int main()
{
    std::cout << "A = " << A::getA() << std::endl;

    // Comment/uncomment lines to observe different behaviors
    // std::cout << "B = " << B<int>::getB() << std::endl; // [1]
    // B<int>::getHelper(); // [2]
}</code>
Copy after login

Expected Behavior:

When [1] is uncommented and [2] is commented, we would expect B::mB to be initialized to "Hello, I'm B.". However, this does not occur.

Actual Behavior:

  • With [1] and [2] commented: No side effects occur.
  • With [1] uncommented: B::getB() returns an empty string.
  • With [1] and [2] uncommented: B::mB is correctly initialized.
  • With [1] commented and [2] uncommented: A segmentation fault occurs during static initialization.

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::getB() requires B::mB to exist, but this only forces the instantiation of the member template declaration, not its definition (including the initializer). In contrast, B::getHelper() does require the definition of B::mInit because it returns a reference to it.

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.

The above is the detailed content of Why Does Static Member Initialization in Templated Classes Behave Differently?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!