I have a class
class foo {
public:
foo();
foo( int );
private:
static const string s;
};
Where is the best place to initialize the string s in the source file?
|
I have a class
Where is the best place to initialize the string s in the source file? |
|||
|
|
|
Anywhere in one compilation unit (usually a .cpp file) would do: foo.h
foo.cpp
(*) According to the standards you must define |
|||||||
|
|
Static members need to be initialized in a .cpp translation unit at file scope or in the appropriate namespace:
|
||||
|
|
|
In a translation unit within the same namespace, usually at the top:
|
|||
|
|