C++/Study

[C++] static 멤버변수의 초기화 방법

MoongStory 2024. 12. 14. 23:16
반응형
class Simple
{
public :
	static int simObjCnt;
};

 

int Simple::simObjCnt = 0;

여기에서 맨 앞 int는 static 멤버변수의 자료형

즉, (멤버변수의 자료형) (클래스명)::(멤버변수 명) = 0; 의 방식으로 초기화 시킨다.

반응형