반응형

C++/디딤돌 C++ 58

기반 클래스에 기본 생성자가 없을 때 [디딤돌 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

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

학생 클래스 (캡슐화 실습) [디딤돌 C++]언제나 휴일 티스토리 ▷Student.h//Student.h#pragma once#include #include using namespace std; enum SIndex //과목 열거형{ KOREAN, ENGLISH, MATH, MAX_SUBJECT}; class Student//학생 클래스{ static int last_num;//정적 멤버 필드 const int num;//상수화 멤버 필드 string name; int scores[MAX_SUBJECT]; static const string titles[MAX_SUBJECT];//과목명 - 정적 멤버 필드public: static int GetStuCount();//정적 메서드 Student(string..

C++/디딤돌 C++ 2016.04.14

복소스 클래스 (캡슐화 실습) [디딤돌 C++]

복소스 클래스 (캡슐화 실습) [디딤돌 C++]언제나 휴일 티스토리 ▷Complex.h//Complex.h#pragma once#include #include using namespace std; class Complex//복소수 클래스{ //멤버 필드(멤버 변수) double image; double real;public: Complex(double real=0, double image=0);//생성자 double GetImage()const;//허수 접근자(가져오기) double GetReal()const;//실수 접근자(가져오기) void SetImage(double image);//허수 설정자(설정하기) void SetReal(double real);//실수 설정자(설정하기) void View()..

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