반응형

연산자 중복 정의 5

[C++ 소스] 성적 클래스 (증감 연산자 중복 정의)

[C++ 소스] 성적 클래스 (증감 연산자 중복 정의) //Score.h#pragma once#include using namespace std;class Score{ int value; public: static const int max_score; static const int min_score; static const int not_score; Score(int value); int GetValue()const; //값 접근자 void Increment();//값 1 증가 void Decrement();//값 1 감소 Score &operator++(); //전위 ++ 연산자 중복 정의 const Score operator++(int); //후위 ++ 연산자 중복 정의 Score &operator-..

C++/디딤돌 C++ 2016.12.15

[C++ 소스] 학생 클래스 (== 연산자 중복정의, 클래스 내부에 정의)

[C++ 소스] 학생 클래스 (== 연산자 중복정의, 클래스 내부에 정의) //Student.h#pragma once#include #include using namespace std;class Student{ string name; const int num;public: Student(int num,string name); bool IsEqual(int num)const; void View()const; bool operator==(int num)const;}; bool operator == (int num, const Student &stu); //Student.cpp #include "Student.h" Student::Student(int num,string name):num(num) { this..

C++/디딤돌 C++ 2016.12.14

[C++ 소스] 학생 클래스 (== 연산자 중복정의, 교환법칙 적용)

[C++ 소스] 학생 클래스 (== 연산자 중복정의, 교환법칙 적용) //Student.h#pragma once#include #include using namespace std;class Student{ string name; const int num;public: Student(int num,string name); bool IsEqual(int num)const; void View()const;}; bool operator == (const Student &stu, int num); bool operator == (int num, const Student &stu); //Student.cpp#include "Student.h"Student::Student(int num,string name):num..

C++/디딤돌 C++ 2016.12.14

[C++ 소스] 학생 클래스 (== 연산자 중복정의)

[C++ 소스] 학생 클래스 (== 연산자 중복정의) //Student.h#pragma once#include #include using namespace std;class Student{ string name; const int num;public: Student(int num,string name); bool IsEqual(int num)const; void View()const;}; bool operator == (const Student &stu, int num); //Student.cpp#include "Student.h"Student::Student(int num,string name):num(num){ this->name = name;}bool Student::IsEqual(int num)c..

C++/디딤돌 C++ 2016.12.14

[C++ 소스] 학생 클래스 (연산자 중복정의 하기 전)

[C++ 소스] 학생 클래스 (연산자 중복정의 하기 전) //Student.h#pragma once#include #include using namespace std;class Student{ string name; const int num;public: Student(int num,string name); bool IsEqual(int num)const; void View()const; }; //Student.cpp#include "Student.h"Student::Student(int num,string name):num(num){ this->name = name;}bool Student::IsEqual(int num)const{ return this->num == num;}void Student::..

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