回 帖 发 新 帖 刷新版面

主题:关于C++引用的问题

#include<iostream>
using namespace std;
class Complex
{
 private:
     int read; //实部 
     int imag; //虚部   
 public:
 Complex(){read=0;imag=0;}      
 Complex(int r,int i):read(r),imag(i){}//函数的重载 
 Complex Complex_add(Complex &c1); 
 void Complex_input();       
};
Complex Complex::Complex_add(Complex &c) 
{
  Complex sum;    
  sum.read=read+c.read;//??
  sum.imag=imag+c.imag;  
  return sum;     
}
 void Complex::Complex_input()
 {
   cout<<"("<<read<<","<< imag<<"i)"<<endl;        
 }
int main()
{
 Complex c1(3,4),c2(5,-10),c3;
 c3 =c1.Complex_add(c2);
 c3.Complex_input();   
 system("pause");
 return 0;
}

c1,和c2是2个对象,而且也没设定友元函数。为什么通过c1中的函数。然后引用C2也可以完成数据共享呢?

回复列表 (共4个回复)

沙发

c1和c2是complex类的两个实例,不是两个类

板凳

接口函数属于类而非类对象

3 楼

c1,c2,c3是 Complex类型的变量 Complex_add()和Complex_input()是Complex类的成员函数
不过我没太明白你想要说什么

4 楼

成员函数,允许访问对象实例的私有方法和属性的……之前某日我也犯过这种晕

我来回复

您尚未登录,请登录后再回复。点此登录或注册