Is it possible to initialize a static const value outside of the constructor? Can it be initialized at the same place where member declarations are found?
class A {
private:
static const int a = 4;
/*...*/
};
|
YES you can but only for int types. If you want your static member to be any other type, you'll have to define it somewhere in a cpp file.
Also, note that this rule have been removed in C++11, now (with a compiler providing the feature) you can initialize what you want directly in the class member declaration. |
|||||||||||
|
|
Static data members (C++ only) The declaration of a static data member in the member list of a class is not a definition. You must define the static member outside of the class declaration, in namespace scope. For example:
Once you define a static data member, it exists even though no objects of the static data member's class exist. In the above example, no objects of class X exist even though the static data member X::i has been defined. Static data members of a class in namespace scope have external linkage. The initializer for a static data member is in the scope of the class declaring the member. A static data member can be of any type except for void or void qualified with const or volatile. You cannot declare a static data member as mutable. You can only have one definition of a static member in a program. Unnamed classes, classes contained within unnamed classes, and local classes cannot have static data members. Static data members and their initializers can access other static private and protected members of their class. The following example shows how you can initialize static members using other static members, even though these members are private:
The initializations of C::p and C::q cause errors because y is an object of a class that is derived privately from C, and its members are not accessible to members of C. If a static data member is of const integral or const enumeration type, you may specify a constant initializer in the static data member's declaration. This constant initializer must be an integral constant expression. Note that the constant initializer is not a definition. You still need to define the static member in an enclosing namespace. The following example demonstrates this:
The tokens = 76 at the end of the declaration of static data member a is a constant initializer. |
|||
|
|
|
You cannot initialize static members within constructors. Integral types you can initialize inline at their declaration. Other static members must be defined (in a
|
|||
|
|
|
Just for the sake of completeness, I am adding about the static template member variables.
|
|||
|
|
|
If i recall correctly , you cannot define it inside the class. You explicitly need to define it outside as mentioned by pablo. |
|||
|
|
statichas nothing to do with constructors sincestaticmembers are not specific to a given instance and exist outside of it. – ereOn Aug 20 '10 at 13:10