Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was wondering, is it possible to have static initialization as Java style in C++? If not, what is the alternative way?

// .h
class A {
protected:
    static CBitmap bitmap;
};

// .cpp
CBitmap A::bitmap;
// Error!
static {
    global_initialization();
    bitmap.LoadBitmap(IDB_BITMAP);
}
share|improve this question

3 Answers

up vote 4 down vote accepted

You can't do this directly in C++ as you can in Java, but you can fake it in a few ways. One option would be to have a static bool class variable that's initially false. In the constructor, you can then do this:

MyClass::MyClass() {
    if (!staticInitialized) {
        /* ... */
        staticInitialized = true;
    }
}

This setup isn't thread-safe (though it can be made to be), and does the initialization as soon as the first class instance is created.

An alternative would be to do something like this in the .cpp file:

static class InitializeModule {
    InitializeModule() {
        /* ... */
    }
} instance;

This creates a singleton class local to the .cpp file whose constructor does the initialization. This initialization is done at program start-time.

share|improve this answer
1  
However, while instance has internal linkage, InitializeModule does not. Using this name in another TU violates the ODR. It is also strange to use a class only for the effect of the ctor, but there is no clean solution along these lines. – Fred Nurk Jan 26 '11 at 1:16
@Fred, can you not get around that with an anonymous namespace? – Nim Jan 26 '11 at 1:24
1  
@Fred Nurk: Adding another static variable when RAII can do it automatically seems wasteful. – Loki Astari Jan 26 '11 at 2:05
Note that the second technique should be used with care. The order global constructors are called in across translation units is undefined. In practice, changing the order that object files and libraries are linked in can break things if one global constructor depends on another global constructor being called first. – catphive Jan 26 '11 at 2:25
1  
In real code, it is almost always best to either thread safely lazily initialize using something like pthread_once, or to require an initialize function is called from main explicitly. – catphive Jan 26 '11 at 2:28

Short Answer: No

Long Answer: Yes
But you need to do some work and wrap your initialization code in a class.

Advantage of C++:
It requires slightly more code, but the same technique can be used to un-initialize the object when the program terminates. Saying that. This is one feature of Java that I would like to bring to C++. As in certain situations in can make the code less complicated (unfortunately like all features its abuse would make things worse).

class A
{
    class StaticBitMapInit: public CBitmap 
    {
        public:
            StaticBitMapInit()
            {
                global_initialization();
                this->LoadBitmap(IDB_BITMAP);
            }
            ~StaticBitMapInit()
            {
                // Uninitialized here
            }
    };
    protected:
        static StaticBitMapInit bitmap;
};

// .cpp
A::StaticBitMapInit  A::bitmap;
share|improve this answer
1  
Although this does achieve what OP asked, I wouldn't recommend this. Any error in LoadBitmap(), such as an exception, would occur before main() is ever executed. You can't put a try/catch block around static initializers and std::cout etal. are not guaranteed to be already initialized. Therefore, there is absolutely way to recover from any error. Also, on Windows DLLs, the static initializers won't be executed (not sure about *NIX versions). – André Caron Jan 26 '11 at 2:29
@André Caron: I agree with your basic point. Just a few things to note. std::cout is guaranteed to be initialized (but I am not sure what good that would do you Anything that goes wrong should probably be going to a log file anyway). DLL static initialize will be executed (if you link against the DLL). Though they may be delay initialized to the first time anything in the DLL is accessed (which is usually what you want). – Loki Astari Jan 26 '11 at 3:09

If you're not worried about portability

For Windows platforms on semi-recent versions of MSVC you can use #pragma init_seg to force the order in which things are initialized in a module. Take a look here for Microsoft's suggestions.

Note that the IBM C++ compiler and a few others also support this fashion of static initialization but not with the same syntax.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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