多态与重载 以重载--和++为例

本文探讨了C++中重载的两种方法——传值重载和传址重载,特别是通过前置++和后置++的比较。返回类型、形参差异和代码实现上的不同揭示了它们的本质区别。前置++返回右值,效率较高,而后置++返回左值并涉及临时对象的生成,适用于需要保留自增前状态的情况。
摘要由CSDN通过智能技术生成

1、第一种方法,传值重载:


#ifndef POINT_H
#define POINT_H

#include<iostream>
using namespace std;

class Point
{
    protected:
    int x;
    int y;
public:
    Point(int a,int b)
    {
        x=a;
        y=b;
    }

    Point operator++();
    Point operator++(int);
    Point operator--();
    Point operator--(int);
    void showPoint();
};

Point  Point::operator++()//前置++
{
    ++x;
    ++y;
    return *this;
}
Point  Point::operator++(int)//后置++
{
    x++;
    y++;
    return *this;
}
Point  Point::operator--()//前置--
{
    --x;
    --y;
    return *this;
}
Point  Point::operator--(int)//后置--
{
    x--;
    y--;
    return *this;
}
void Point::showPoint()
{
    cout<<"x="<<x<<"  y="<<y<<endl;
}
#endif // POINT_H

第二种方法,传址重载;


                
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值