C++/디딤돌 C++

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

언제나휴일 2016. 12. 15. 13:34
반응형

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


Program.cpp

Score.cpp

Score.h



//Score.h

#pragma once

#include <iostream>

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--(); //전위 -- 연산자 중복 정의

    const Score operator--(int); //후위 -- 연산자 중복 정의

private:

    void SetValue(int value);//값 설정자   

};



//Score.cpp

#include "Score.h"

const int Score::max_score=100;

const int Score::min_score=0;

const int Score::not_score=-1;

Score::Score(int value)

{

    SetValue(value);

 

}

int Score::GetValue()const

{

    return value;

}

void Score::Increment()

{

    if(value<max_score)

    {

        value++;

    }

}

void Score::Decrement()

{

    if(value>min_score)

    {

        value--;

    }

}

Score &Score::operator++() //전위 ++ 연산자 중복 정의

{

    Increment();

    return (*this);

}

const Score Score::operator++(int) //후위 ++ 연산자 중복 정의

{

    Score score(*this);

    Increment();

    return score;

}

Score &Score::operator--() //전위 -- 연산자 중복 정의

{

    Decrement();

    return (*this);

}

const Score Score::operator--(int) //후위 -- 연산자 중복 정의

{

    Score score(*this);

    Decrement();

    return score;

}

void Score::SetValue(int value)

{

    if((value<min_score)||(value>max_score))

    {

        value = not_score;

    }

    this->value = value;

}


//Program.cpp

//증감 연산자 중복 정의

#include "Score.h"

 

int main()

{

    Score score(20);   

    cout<<"score "<<score.GetValue()<<" 후위 ++"<<endl;

    Score re =  score++;

    cout<<"score: "<<score.GetValue()<<" 연산 결과:"<<re.GetValue()<<endl;

    cout<<"score "<<score.GetValue()<<" 전위 ++"<<endl;

    re =  ++score;

    cout<<"score: "<<score.GetValue()<<" 연산 결과:"<<re.GetValue()<<endl;

 

    return 0;

}



본문

[디딤돌 C++] 48. 증감 연산자 중복 정의





반응형