본문 바로가기

Robotics/Software Tech.

static 멤버변수 사용하기

클래스 멤버변수로  static을 사용하기위한 방법이다.

//Robots.h파일
class CRobots : public XXX
{
     public:
         static int
motor[10];  //<--- 여기서는 멤버변수를 선언(declaration)만 한것이다.
}



//Robots.cpp파일
//cpp에서 정의(definition)가 들어간다.

#ifdef _DEBUG
#define new DEBUG_NEW
#endif

//정의를 여기서 한다.
int CRobots ::motor[10];