Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
(static initialization/template instantiation) problems with factory pattern
trying to force static object initialization

EDIT: There is a duplicate of this but I'll leave this up as I personally had trouble finding it. In addition here's the answer that helped me:

http://stackoverflow.com/a/2852234/673730

Assume the following class:

template<class X>
struct A
{
   static bool x;
   static bool foo()
   {
      cout << "here";
      return true;
   }
};

template<class X>
bool A<X>::x = A<X>::foo();

I would have assumed that when I specialize A, the static field x would get initialized. However, the following:

A<int> a;
//no output

doesn't result in a call to foo. If I try to access the member, the behavior is as expected:

A<int> a;
bool b = a.x;
//output: here

EDIT: How can I make sure A::x is initialized without accessing it?

share|improve this question

marked as duplicate by iammilind, Matthieu M., Praetorian, Luchian Grigore, Bill the Lizard Apr 26 '12 at 15:21

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 1 down vote accepted

This think is the reference(14.7.1.2) :

Unless a member of a class template or a member template has been explicitly instantiated or explicitly specialized, the specialization of the member is implicitly instantiated when the specialization is referenced in a context that requires the member definition to exist; in particular, the initialization (and any associated side-effects) of a static data member does not occur unless the static data member is itself used in a way that requires the definition of the static data member to exist.

template<class X, bool y>
struct A
{
    static cosnt bool x = y;
    static bool foo()
    {
       cout << "here";
       return true;
    }
 };
share|improve this answer

If a template is implicitly specialised by virtue of being instantiated, then only those members that are actually referred to are instantiated.

Contrast this with explicit class template instantiation (template struct A<int>;), which instantiates and creates code for all members. (You can also instantiate only specific members individually: template bool A<int>::x;.)

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.