Click here to Skip to main content
15,883,839 members
Articles / Programming Languages / C++

Static Initialization Function in Classes

Rate me:
Please Sign up or sign in to vote.
2.71/5 (27 votes)
1 Oct 2008CPOL 72.9K   160   17   10
Automaticlly invoke static initialization functions of classes.

Content

Sometimes when we write a C++ class, we want a static function to be used to initialize the class. For example, a static function is used to initialize a static vector or map. We can do the same thing easily in Java, by Java's static block. How we can do with C++?

At first, let's see how to initialize a normal static member in C++.

C++
class Test1 {
public:
    static string emptyString;
};

string Test1::emptyString = "";
// also can be
// string Test1::emptyString;
// string Test1::emptyString("");

As you saw, we declare a static member variable in the class definition, then define and initialize it in the implementation file (.cpp).

Now we meet the first problem, how to initialize a static collection member? The answer is we must write a static function to do that.

And now we meet the second problem, how to invoke the initialization function? Normally, we will invoke the initialization function in the main function. But I think it's not a good solution because users may forget to invoke the initialization function.

Here is my solution:

C++
class Test2 {
public:
    static vector<string> stringList;
private:
    static bool __init;
    static bool init() {
        stringList.push_back("string1");
        stringList.push_back("string2");
        stringList.push_back("string3");

        return true;
    }
};

// Implement
vector<string> Test2::stringList;
bool Test2::__init = Test2::init();

An additional static member is used in my solution. When the additional static member is initialized, the initialization function is invoked automatically.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
China China
James Fancy, is a software engineer from China. He enjoys and familiar with Java, C++ and some script languages.

If you can read Chinese word, here is one of James Fancy's BLOG:
http://hi.baidu.com/jamesfancy

Comments and Discussions

 
BugIt doesn't work with optimization Pin
Member 869768710-Apr-12 21:46
Member 869768710-Apr-12 21:46 
GeneralThanks. Very useful! Pin
Abdusalam Abdurahman19-Jan-10 18:32
Abdusalam Abdurahman19-Jan-10 18:32 
GeneralRe: Thanks. Very useful! Pin
jamesfancy21-Jan-10 23:12
jamesfancy21-Jan-10 23:12 
GeneralStatic Initialization Function in Classes Pin
wtu_ben5-Oct-08 15:13
wtu_ben5-Oct-08 15:13 
GeneralRe: Static Initialization Function in Classes Pin
jamesfancy5-Oct-08 20:26
jamesfancy5-Oct-08 20:26 
Generalyour English is just so-so Pin
Member 44787782-Oct-08 21:51
Member 44787782-Oct-08 21:51 
GeneralRe: your English is just so-so Pin
jamesfancy3-Oct-08 17:04
jamesfancy3-Oct-08 17:04 
QuestionHow I usually do it [modified] Pin
Rolf Kristensen2-Oct-08 1:10
Rolf Kristensen2-Oct-08 1:10 
AnswerRe: How I usually do it Pin
jamesfancy2-Oct-08 16:57
jamesfancy2-Oct-08 16:57 
AnswerRe: How I usually do it Pin
Farid Z7-Dec-09 6:54
Farid Z7-Dec-09 6:54 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.