關於糾正 C/C++ 之前在函輸內改變 變數的一個錯誤想法。

來源:互聯網
上載者:User

標籤:

再這之前,我曾認為,一個變數只要定義為全域變數後,即使把它以傳參的方式傳進去一個函數內,也能改變它的值

事實證明,這一想法是錯的。

下面我用代碼說明,具體注釋將寫在裡面

 1 #include<stdio.h> 2 #include<iostream> 3  4 int a = 0; 5  6 void change(int *b){//這個是傳指標,可以改變a 7     *b=*b+1; 8 } 9 10 void change_1(int a){//這個不能改變11     a++;12 }13 14 void change_2(int &a){//傳入引用,可以改變15     a++;16 }17 18 void change(){//可以改變19     a++;20 }21 22 void main(){23     change(&a);24     std::cout<<a;25     change_1(a);26     std::cout<<a;27     change_2(a);28     std::cout<<a;29     change();30     std::cout<<a;31     32 }

 

關於糾正 C/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.