1. ホーム
  2. c++

[解決済み] 後置修飾子 a++ と前置修飾子 ++a に対して、2つの異なる方法で演算子++をオーバーロードするにはどうすればよいですか?

2022-10-13 11:16:47

質問

postfix で演算子++を二通りの方法でオーバーロードするにはどうしたらよいでしょうか? a++ と接頭辞 ++a ?

どのように解決するのですか?

このように表示されるはずです。

class Number 
{
    public:
        Number& operator++ ()     // prefix ++
        {
           // Do work on this.   (increment your object here)
           return *this;
        }

        // You want to make the ++ operator work like the standard operators
        // The simple way to do this is to implement postfix in terms of prefix.
        //
        Number  operator++ (int)  // postfix ++
        {
           Number result(*this);   // make a copy for result
           ++(*this);              // Now use the prefix version to do the work
           return result;          // return the copy (the old) value.
        }
};