0

これが機能しないのはなぜですか?int+Date の + 演算子を定義して、int を返そうとしています。そこで、Date+intを定義するメンバーとしてoperator+を定義し、非メンバー関数operator+(int, Date)を定義したのですが、メインで使うとその関数を使っていないようでエラーが発生します

class Date
{   int D;
    int M;
    int Y;
public:
    Date();
    Date(int, int, int);
    ~Date(void);
    int getDay() const;
    Date operator+(Date) const;
    Date operator+(int) const;
};

Date::Date()
{
    D = 15;
    Y = 2012;
    M = 2;
}
Date::Date(int d, int m, int y)
{
    D = d;
    Y = y;
    M = m;
}
Date::~Date(void)
{
}    
int Date::getDay() const
{
    return D;
}
Date Date::operator+(Date d) const
{
    return Date(d.D+D,d.M+M,d.Y+Y);
}
Date Date::operator+(int d) const
{
    return Date(d+D,M,Y);
}

int operator+(int i,Date d) // This is what is wrong apparently.
{
    return i + d.getDay();
}

int main ()
{
Date d = Date();
int i = 7 + d; // This is what generates the error at compile time.
cout << i;
return 0;
}
4

1 に答える 1

2

クラス外のわかりやすい関数として定義できます。

例のリンクを検討してください:

http://www.learncpp.com/cpp-tutorial/92-overloading-the-arithmetic-operators/

于 2012-02-29T22:34:46.477 に答える