학생 클래스 (상수화 멤버) [디딤돌 C++]언제나 휴일 티스토리 ▷Student.h//Student.h#pragma once#include #include using namespace std;class Student{ const int num; //비 정적 상수화 멤버 필드 string name; int hp; static const int max_hp; //정적 상수화 멤버 필드public: Student(int _num,string _name); void View()const;//상수화 멤버 메서드}; ▷Student.cpp//Student.cpp#include "Student.h" const int Student::max_hp=200; //정적 상수화 멤버 필드 초기값 지정Student::Stud..