1111184477 2021-09-20 14:45 采纳率: 25%
浏览 17

关于运算符重载的一道题中的this指针,初学者的一个疑惑

#include <iostream>
using namespace std;
class complex {
public:
    complex();
    complex(double real, double imag);
public:
    //声明运算符重载
    complex operator+(const complex& A) const;
    void display() const;
private:
    double m_real;  //实部
    double m_imag;  //虚部
};
complex::complex() : m_real(0.0), m_imag(0.0) { }
complex::complex(double real, double imag) : m_real(real), m_imag(imag) { }
//实现运算符重载
complex complex::operator+(const complex& A) const {
    complex B;
    B.m_real = this->m_real + A.m_real;
    B.m_imag = this->m_imag + A.m_imag;
    return B;
}
void complex::display() const {
    cout << m_real << " + " << m_imag << "i" << endl;
}
int main() {
    complex c1(4.3, 5.8);
    complex c2(2.4, 3.7);
    complex c3;
    c3 = c1 + c2;
    c3.display();
    return 0;
}


关于这道运算符重载的问题,我想请问一下,当执行到这步

```c++
c3 = c1 + c2;

```以后,在这道题中,this指针的工作原理原理是什么,包括这个this指针指的对象是什么,以及为什么会指向该对象,

  • 写回答

2条回答 默认 最新

  • 快乐鹦鹉 2021-09-20 14:48
    关注

    this就表示这个类自身,这是this的作用,没有什麽为什麽

    评论

报告相同问题?

问题事件

  • 创建了问题 9月20日

悬赏问题

  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog