반응형

전체 글 741

기반 클래스에 기본 생성자가 없을 때 [디딤돌 C++]

기반 클래스에 기본 생성자가 없을 때 [디딤돌 C++]언제나 휴일 티스토리 ▷ Program.cpp//기반 클래스에 기본 생성자가 없을 때#include #include using namespace std; class Musician{ string name;public: Musician(string name) { this->name = name; coutView(); pianist->Play(); delete pianist; return 0;} * 디딤돌 C++ 28. 파생 개체의 생성과 소멸 과정에서 디딤돌 C++ 책 소개 바로가기

C++/디딤돌 C++ 2016.04.14

학생 클래스 (캡슐화 최종 실습) [디딤돌 C++]

학생 클래스 (캡슐화 최종 실습) [디딤돌 C++]언제나 휴일 티스토리 ▷Student.h//Student.h#pragma once#include using namespace std;class Student{ const int pn;//주민번호 static int last_pn;//가장 최근에 부여한 주민 번호 string name;//이름 int iq;//지력 int hp;//체력 int stress;//스트레스 int scnt;//연속으로 공부한 횟수 //능력치의 디폴트, 최소, 최대값 static const int def_iq; static const int min_iq; static const int max_iq; static const int def_hp; static const int min_..

C++/디딤돌 C++ 2016.04.14
반응형