C++運算子多載 成員函數與友元函數詳解

來源:互聯網
上載者:User

以下是對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.
*****************************/

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.