Home > Backend Development > C++ > body text

Can You Force Initialization of Static Members in Template Classes Without Instantiation?

DDD
Release: 2024-11-01 15:37:30
Original
163 people have browsed it

Can You Force Initialization of Static Members in Template Classes Without Instantiation?

How to Explicitly Initialize Static Members

Question:

In C , static members of a template class are only initialized when explicitly used within a concrete instantiation. Is there a way to force their initialization without creating an instance or requiring the user to specify the member directly?

Answer:

Yes, it is possible to force the initialization of a static member by employing one of the following techniques:

Using a Wrapper Type:

<code class="cpp">template<typename T, T> struct value { };

template<typename T>
struct HasStatics {
  static int a; // we force this to be initialized
  typedef value<int&amp;, a> value_user;
};

template<typename T>
int HasStatics<T>::a = /* whatever side-effect you want */ 0;</code>
Copy after login

Using a Syntactic Trick:

<code class="cpp">template<typename T, T> struct var { enum { value }; };
typedef char user;

template<typename T>
struct HasStatics {
  static int a; // we force this to be initialized
  static int b; // and this

  // hope you like the syntax!
  user :var<int&amp;, a>::value,
       :var<int&amp;, b>::value;
};

template<typename T>
int HasStatics<T>::a = /* whatever side-effect you want */ 0;

template<typename T>
int HasStatics<T>::b = /* whatever side-effect you want */ 0;</code>
Copy after login

Both techniques force the initialization of the static members by introducing a dependency that triggers the evaluation of the member's definition. Note that the second technique involves unconventional syntax and may not be suitable for all cases.

The above is the detailed content of Can You Force Initialization of Static Members in Template Classes Without Instantiation?. 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!