반응형

C++ 104

학생 클래스 (생성자 중복 정의) [디딤돌 C++]

학생 클래스 (생성자 중복 정의) [디딤돌 C++]언제나 휴일 티스토리 ▷Student.h//Student.h#pragma once#include #include using namespace std;class Student{ int num; string name;public: //생성자 중복 정의 Student(void); Student(int num); Student(int num,string name); void View();}; ▷Student.cpp//Studetn.cpp#include "Student.h" Student::Student(void){ num = 0; name = "";}Student::Student(int _num){ num = _num; name = "";}Student::Stu..

C++/디딤돌 C++ 2016.04.14

학생 클래스 (접근 지정자) [디딤돌 C++]

학생 클래스 (접근 지정자) [디딤돌 C++]언제나 휴일 티스토리 ▷ Student.h//Student.h#pragma once#include using namespace std; #define DEF_IQ 100 //디폴트 IQ#define MAX_IQ 300 //최대 IQ class Student{ int num; string name; int iq;public: Student(int _num,string _name); void Study(int hour); void View();}; ▷Student.cpp//Student.cpp#include "Student.h"#include using namespace std; Student::Student(int _num,string _name){ num = ..

C++/디딤돌 C++ 2016.04.14

캡슐화 개요 [디딤돌 C++]

캡슐화 개요 [디딤돌 C++]언제나 휴일 티스토리 //C++언어에서 캡슐화#include #include using namespace std; class Unit//클래스를 이용하여 캡슐화{ //디폴트 가시성은 클래스 내부에서만 접근 가능 int num; string name; int hp;public: //클래스 외부에서도 접근 가능할 수 있게 접근 지정자 설정 Unit(int _num,string _name)//생성자 메서드 { num = _num; name = _name; hp = 100; } void Train(int hour) //멤버 메서드 { cout

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