[C++] 초기화 리스트(Initializer list), static
*을 보며 공부하여 정리한 글입니다. 오늘도 열심히 우리의 이해를 도와줄 몬스터(Monster) 클래스! #include #include class Monster { private: std::string name; int health; int damage; static int totalMonsterNum; public: Monster() = default; Monster(std::string name, int health, int damage); }; 초기화 리스트를 사용하지 않은 일반적인 생성자 Monster::Monster(std::string name, int health, int damage) { this->name = name; this->health = health; this->damage =..