vote up 3 vote down star
2

What I want to do is have a class with a private static data member. In java or C#, I can just make a "static constructor" that will run before I make any instances of the class. It sets up the static data members of the class. It only gets run once (as the variables are read only and only need to be set once) and since its a function of the class it can access its private members. Now I could set the variables in the constructor, but then won't they get set every time I make an instance it sets the data members, and that only needs to get done once.

The thought occurs to me that since the variables will be read only, they can just be public static const, so I can set them once outside the class. But is it possible to have private static data members in the class if I don't want to initialize them in the constructor, since the constructor is run repeatedly, so they would get initialized repeatedly?

thanks guys! (I explained it the best I could, hopefully I did enough :D )

EDIT: I'm sorry I didn't explain myself fully. I want to initialize a VECTOR in the class. The vector needs to contain all the letters of the alphabet, so I can't just set it once, it needs to be filled with all the chars a-z.

flag

2  
I thought you explained yourself perfectly well! – Earwicker Jul 28 at 22:35

8 Answers

vote up 13 vote down check

To get the equivalent of a static constructor, you need to write a separate ordinary class to hold the static data and then make a static instance of that ordinary class.

class StaticStuff
{
     std::vector<char> letters_;

public:
     StaticStuff()
     {
         for (char c = 'a'; c <= 'z'; c++)
             letters_.push_back(c);
     }

     // provide some way to get at letters_
};

class Elsewhere
{
    static StaticStuff staticStuff; // constructor runs once, single instance

};
link|flag
thanks! though that's very annoying to have to do all that. One of the many "mistakes" C# and java learned from. – CrazyJugglerDrummer Jul 28 at 22:59
3  
Yes. I always point out to people that if C++ hadn't made all those "mistakes" then other languages would have to make them. C++ covering so much ground, even making mistakes, has been great for the languages that followed it. – quark Jul 28 at 23:02
Just one little nuance, as constructors come into play no one guarantees when the constructor for static object executes. A well-known much safer approach is class Elsewhere { StaticStuff& get_staticStuff() { static StaticStuff staticStuff; // constructor runs once, when someone first needs it return staticStuff; } }; I wonder if static constructors in C# and Java can provide the same guarantee as the code above... – Oleg Zhylin Jul 28 at 23:31
@Oleg: Yes they do. The standard gurantees that the constructors for all non local variables are executed before main is entered. It also gurantees that within a compilation unit the order of construction is well defined and the same order as declaration within the compilation unit. Unfortunately they do not define the order across multiple compilation units. – Martin York Jul 29 at 2:25
@Oleg: further to Martin's answer about order of construction in C++, the answer for C# is that code is dynamically loaded on demand, and statics are initialized on demand, and this is a thread-safe facility, so statics effectively work like thread-safe lazy singletons (with a built-in correct implementation of double-checked locking). Hence order-of-init problems can still occur where there are circular references, but they are unusual. Not sure how much this is true in Java. – Earwicker Jul 29 at 7:07
show 2 more comments
vote up 0 vote down

How about creating a template to mimic the behavior of C#.

template<class T> class StaticConstructor
{
    bool m_StaticsInitialised = false;

public:
    typedef void (*StaticCallback)(void);

    StaticConstructor(StaticCallback callback)
    {
        if (m_StaticsInitialised)
            return;

        callback();

        m_StaticsInitialised = true;
    }
}

template<class T> bool StaticConstructor<T>::m_StaticsInitialised;

class Test : public StaticConstructor<Test>
{
    static std::vector<char> letters_;

    static void _Test()
    {
        for (char c = 'a'; c <= 'z'; c++)
            letters_.push_back(c);
    }

public:
    Test() : StaticConstructor<Test>(&_Test)
    {
        // non static stuff
    };
};
link|flag
vote up 1 vote down

No need for an init() function, std::vector can be created from a range:

// h file:
class MyClass {
    static std::vector<char> alphabet;
// ...
};

// cpp file:
#include <boost/range.hpp>
static const char alphabet[] = "abcdefghijklmnopqrstuvwxyz";
std::vector<char> MyClass::alphabet( boost::begin( ::alphabet ), boost::end( ::alphabet ) );

Note, however, that statics of class type cause trouble in libraries, so they should be avoided there.

link|flag
I like it. Though if only we could do it in one line without the now usless alphabet. – Martin York Aug 1 at 9:04
vote up 3 vote down

The concept of static constructors was introduced in Java after they learned from the problems in C++. So we have no direct equivalent.

The best solution is to use POD types that can be initialised explicitly.
Or make your static members a specific type that has its own constructor that will initialize it correctly.

//header

class A
{
    // Make sure this is private so that nobody can missues the fact that
    // you are overriding std::vector. Just doing it here as a quicky example
    // don't take it as a recomendation for deriving from vector.
    class MyInitedVar: public std::vector<char>
    {
        public:
        MyInitedVar()
        {
           // Pre-Initialize the vector.
           for(char c = 'a';c <= 'z';++c)
           {
               push_back(c);
           }
        }
    };
    static int          count;
    static MyInitedVar  var1;

};


//source
int            A::count = 0;
A::MyInitedVar A::var1;
link|flag
vote up 0 vote down

Well you can have

class MyClass
{
    public:
        static vector<char> a;
        static class _init
        {
            _init() { for(char i='a'; i<='z'; i++) a.push_back(i); }
        } _initializer;
};
link|flag
vote up 0 vote down

To initialize a static variable, you just do so inside of a source file. For example:

//Foo.h
class Foo
{
 private:
  static int hello;
};


//Foo.cpp
int Foo::hello = 1;
link|flag
vote up 0 vote down

You define static member variables similarly to the way you define member methods.

foo.h

class Foo
{
public:
    void bar();
private:
    static int count;
};

foo.cpp

#include "foo.h"

void Foo::bar()
{
    // method definition
}

int Foo::count = 0;
link|flag
vote up 7 vote down

In the .h file:

class MyClass {
private:
    static int myValue;
};

In the .cpp file:

#include "myclass.h"

int MyClass::myValue = 0;
link|flag
This works fine for individual static members (regardless of type). The deficiency in comparison to static constructors is that you can't impose an order between the various static members. If you need to do that, see Earwicker's answer. – quark Jul 28 at 22:36

Your Answer

Get an OpenID
or

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