<<< | Index | >>> |
Must be initialized in init list of each constructor
May be different for different objects
static const members are different
Ok to initialize integral types in declaration
External initialization required for other types
class IntStack { static const int STACK_SIZE = 1024; int m_stack[ STACK_SIZE ]; };
<<< | Index | >>> |