학생 클래스(학생 번호 순차 부여, 정적 멤버) [디딤돌 C++]언제나 휴일 티스토리 ▷Student.h//Student.h#pragma once class Student{ int num; static int last_num; //정적 멤버 필드public: Student(void); int GetNum(); static int GetLastNum(); //정적 멤버 메서드 }; ▷Student.cpp//Student.cpp#include "Student.h" int Student::last_num; //static 멤버 필드는 멤버 필드 선언을 해야 함, 선언문에서 static 키워드 사용 안 함 Student::Student(void){ last_num++; num = last_num;} int St..