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.
