operator使用

operator需要有引用哦

若operator+,c1+c2也就是c1.operator+(c2)可以实现类的加减

1,有变量的加减

class Complex
{
	public:
		Complex(){real=0; imag=0;}
		Complex(int r,int m){
			real=r; imag=m;
		}
		Complex operator+(int &i)
		{
			Complex t;
			t.real=i+real; t.imag=imag;
			return t;
		}
		void input()
		{
			cout<<real<<','<<imag<<endl;
		}
	private:
		int real; int imag;
};
int main()
{
	Complex c1(1,2),c2;
	int i=5;
	//c2=i+c1;//不可以,必须按顺序 
	c2=c1+i;//可以的!! 
	c1.input();
	c2.input();
	return 0;
}

用成员函数,第一个必须是成员函数,而不是i,c1+i才是正确的

2,友元函数的有变量加减

class Complex
{
	public:
		Complex(){real=0; imag=0;}
		Complex(int r,int m){
			real=r; imag=m;
		}
		friend Complex operator+(int &i,Complex &c)//必须两个 
		{
			return Complex(i+c.real,c.imag);
		}
		void input()
		{
			cout<<real<<','<<imag<<endl;
		}
	private:
		int real; int imag;
};
int main()
{
	Complex c1(1,2),c2;
	int i=5;
	c2=i+c1;//可以,必须按顺序的! 
	//c2=c1+i;//不可以的! 
	c1.input();
	c2.input();
	return 0;
}

 上面两个是双目的,如果是单目(正,负),括号内不用写参数

如operate+()

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值