最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

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();
}
/***********************
執(zhí)行結果
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();
}
/***********************
執(zhí)行結果
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.
*****************************/

相關文章

最新評論

祁连县| 信宜市| 平湖市| 汤阴县| 乌兰察布市| 新乡县| 丘北县| 平潭县| 思茅市| 山阳县| 广德县| 邳州市| 汝州市| 库伦旗| 罗定市| 琼结县| 吴川市| 九江市| 海盐县| 普陀区| 获嘉县| 秦安县| 齐齐哈尔市| 扬州市| 舞阳县| 苗栗县| 鹤庆县| 自治县| 白朗县| 郧西县| 敦化市| 凌海市| 潢川县| 榆社县| 都匀市| 宣汉县| 华亭县| 大理市| 新晃| 资源县| 苍梧县|