c++中三種參數引用方式

來源:互聯網
上載者:User

標籤:副本   形參   大型   stl   i++   void   span   code   c++   

傳值調用 
是預設的參數傳遞機制,實參會複製給形參,調用的語義是每次取得實參的副本並將該複本用作形參,即會有複本的開銷,並且不改變實參的值。 適用於:傳值調用用於不應該被函數改變的小型對象。 
例子:void demo1(int a ,int b);?

引用調用 
省去了副本的開銷,但會改變實參的值。適用於:引用調用用於可能會被函數改變的對象。 
例子:void demo2(int & a,int &b);

常數引用調用 
為了取得和傳值調用一樣的效果,即不改變實參的值,使用這種調用形式。它消除了副本的開銷,同時不改變實參。? 適用於:常量引用調用用於不應該被函數改變的大型物件。 
例子:void demo3(const vector &a ,const vector &b );?

#include <iostream>#include <vector>using namespace std;//如果在main之後的定義成員函數,則在main之前先聲明void demo1(int a, int b);void demo2(int &a, int &b);void demo3(const vector<int> &a, vector<int> &b);int main(){    int c = 3,d = 4;    demo1(c, d);    cout << "demo1後輸出" << c << d << endl; //demo1後輸出並發現值未變    int &a = c;    int &b = d;    demo2(a, b);    cout << "demo2後輸出" << a << b << endl;     // vector的定義和初始化    vector<int> e;    e.reserve(10);    for(int i = 0; i < 10; i++)    {        e.push_back(i);    }    vector<int> f;    for( int j = 0; j < 10; j++ )    {        f.push_back(j);    }    const vector<int> &v1 = e;  //常數引用,不可修改    vector<int> &v2 = f;   //普通引用,可以修改    demo3(v1, v2);    cout << "demo3後輸出" << v1[0] << v2[0] << endl; }void demo1(int a, int b){    a = a+1;    b = b+1;    cout << "demo1中輸出" << a << b << endl;}void demo2(int &a, int &b){    a = a+1;    b = b+1;    cout << "demo2中輸出" << a << b << endl; }void demo3(const vector<int> &a, vector<int> &b){    cout<<a[6]<<endl;    b[0] = a[6];    cout << "demo3中輸出" << a[0] << b[0] << endl; }

c++中三種參數引用方式

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.