C++ static멤버변수, static멤버함수, const static 멤버변수, const객체, mutable키워드, friend.md!
static 멤버변수 ``` class SoSimple { private: static int simObjCnt; public: SoSimple() { simObjCnt; cout«simObjCnt«endl; } };
static 멤버변수 ``` class SoSimple { private: static int simObjCnt; public: SoSimple() { simObjCnt; cout«simObjCnt«endl; } };
Process Synchronization
객체배열 객체 기반의 배열은 다음과 같은 형태로 선언할 수 있다. SoSimple arrp[10]; SoSimple *ptrArray = new SoSimple[10];
CPU 스케줄링
Thread