C++运算符重载 成员函数与友元函数详解
更新时间:2013年07月31日 09:47:48 作者:
以下是对C++运算符重载 成员函数与友元函数进行了介绍,需要的朋友可以过来参考下
复制代码 代码如下:
#include<iostream>
using namespace std;
class A
{
int x,y;
public:
A(int xx,int yy):x(xx),y(yy){}
A(){x=0;y=0;}
A operator+(const A&b) //不加const限定,也可以
{ return A(x+b.x,y+b.y); }
A operator-()
{ return A(-x,-y); }
void show()
{cout<<"x="<<x<<" y="<<y<<endl;}
};
void test_A()
{
A a1(2008,512),a2(2013,420),a3;
a3=a1+a2; //调用操作符重载函数: a1.oprator +(a2)
a3.show();
a1=-a1; //调用操作符重载函数: a1.operator -()
a1.show();
}
/***********************
执行结果
x=4021 y=93
x=-2008 y=-512
**********************/
class B
{
int x,y;
public:
B(int xx,int yy):x(xx),y(yy){}
B(){x=0;y=0;}
friend B operator+(const B&a,const B&b);
friend B operator-(const B&a);
void show()
{cout<<"x="<<x<<" y="<<y<<endl;};
};
B operator+(const B&a,const B&b)
{return B(a.x+b.x,a.y+b.y);}
B operator-(const B&a)
{return B(-a.x,-a.y);}
/***************************
class B
{
int x,y;
public:
B(int xx,int yy):x(xx),y(yy){}
B(){x=0;y=0;}
friend B operator+(const B&a,const B&b)
{return B(a.x+b.x,a.y+b.y);}
friend B operator-(const B&a)
{return B(-a.x,-a.y);}
void show()
{cout<<"x="<<x<<" y="<<y<<endl;};
}
********************************/
int main()
{
B B1(1991,1105),B2(2013,62),B3;
B3=B1+B2; //调用操作符重载函数: a1.oprator +(a2)
B3.show();
B1=-B1; //调用操作符重载函数: a1.operator +()
B1.show();
}
/****************************
运行结果:
x=4004 y=1167
x=-1991 y=-1105
Process returned 0 (0x0) execution time : 0.021 s
Press any key to continue.
*****************************/
复制代码 代码如下:
#include<iostream>
using namespace std;
class A
{
int x,y;
public:
A(int xx,int yy):x(xx),y(yy){}
A(){x=0;y=0;}
A operator+(const A&b) //不加const限定,也可以
{ return A(x+b.x,y+b.y); }
A operator-()
{ return A(-x,-y); }
void show()
{cout<<"x="<<x<<" y="<<y<<endl;}
};
void test_A()
{
A a1(2008,512),a2(2013,420),a3;
a3=a1+a2; //调用操作符重载函数: a1.oprator +(a2)
a3.show();
a1=-a1; //调用操作符重载函数: a1.operator -()
a1.show();
}
/***********************
执行结果
x=4021 y=93
x=-2008 y=-512
**********************/
class B
{
int x,y;
public:
B(int xx,int yy):x(xx),y(yy){}
B(){x=0;y=0;}
friend B operator+(const B&a,const B&b);
friend B operator-(const B&a);
void show()
{cout<<"x="<<x<<" y="<<y<<endl;};
};
B operator+(const B&a,const B&b)
{return B(a.x+b.x,a.y+b.y);}
B operator-(const B&a)
{return B(-a.x,-a.y);}
/***************************
class B
{
int x,y;
public:
B(int xx,int yy):x(xx),y(yy){}
B(){x=0;y=0;}
friend B operator+(const B&a,const B&b)
{return B(a.x+b.x,a.y+b.y);}
friend B operator-(const B&a)
{return B(-a.x,-a.y);}
void show()
{cout<<"x="<<x<<" y="<<y<<endl;};
}
********************************/
int main()
{
B B1(1991,1105),B2(2013,62),B3;
B3=B1+B2; //调用操作符重载函数: a1.oprator +(a2)
B3.show();
B1=-B1; //调用操作符重载函数: a1.operator +()
B1.show();
}
/****************************
运行结果:
x=4004 y=1167
x=-1991 y=-1105
Process returned 0 (0x0) execution time : 0.021 s
Press any key to continue.
*****************************/
您可能感兴趣的文章:
相关文章
Visual Studio 2019 如何新建 Win32项目的方法步骤
这篇文章主要介绍了Visual Studio 2019 如何新建 Win32项目的方法步骤,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2020-03-03C语言中 int main(int argc,char *argv[])的两个参数详解
这篇文章主要介绍了C语言中 int main(int argc,char *argv[])的两个参数详解的相关资料,需要的朋友可以参考下2017-03-03
最新评论