VisualStudio.C++.C#/C . C++

C++ 클래스 static 변수 초기화.

i.got.it 2017. 3. 13. 23:27




class my_class{

static int my_int ;

}


상기와 같은 static 변수는 클래스 외부(통상 cpp 상단이 적당)에서 아래 처럼 초기화 처리 해줘야 한다.


int my_class::my_int = 0;




///1252.