본문 바로가기

C++ Programming/STL

static 상수 멤버의 초기화

class MyClass{
    static const int num = 100;
    int elems[num];
    ...
 };
 -> const int MyClass::num; //이곳에서 초기화하지 않음