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.