C++/디딤돌 C++

[C++ 소스] 성적 클래스 (묵시적 형 변환 연산자 중복 정의)

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

[C++ 소스] 성적 클래스 (묵시적 형 변환 연산자 중복 정의)


 DCArray.cpp

 DCArray.h

 Program.cpp



//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);

    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);

}

Score::operator int()

{

    return value;

}

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);   

    int num=0;

 

    cout<<"정수 :";

    cin>>num;

 

    if(num>score)

    {

        cout<<num<<" "<<score<<"보다 크다."<<endl;

    }

    else if(num == score)

    {

        cout<<num<<" "<<score<<"는 같다."<<endl;

    }

    else

    {

        cout<<num<<" "<<score<<"보다 작다."<<endl;

    }

 

    int value = score;

    cout<<":"<<value<<endl;

    return 0;

}



본문

[디딤돌 C++] 51. 묵시적 변환 연산자 정의





반응형