由搜狐的一道筆試題想到的

來源:互聯網
上載者:User

題目如下:

    #include<iostream>      using namespace std;            void swap_int(int a , int b)      {          int temp = a;          a = b;          b = temp;      }            void swap_str(char* a , char* b)      {          char* temp = a;          a = b;          b = temp;      }            int main(void)      {          int a = 10;          int b = 5;          char* str_a = "hello world";          char* str_b = "world hello";          swap_int(a , b);          swap_str(str_a , str_b);          printf("%d %d %s %s\n", a , b , str_a , str_b);                return 0;      }  

題目就是 判斷能否交換兩個字串和兩個整數

同時考察 值傳遞和引用傳遞區別。

值傳遞編譯器自動建立臨時變數存放響應的變數,當函數返回變數的作用失效。

這道題目痛點不在swap_int,在於swap_str

把這道題目換個方式寫出來,我想可能更容易理解。

    #include<iostream>      using namespace std;            void swap_int(int a , int b)      {          int temp = a;          a = b;          b = temp;      }            void swap_str(char* a , char* b)      {          char* temp = a;          a = b;          b = temp;      }            int main(void)      {          int a = 10;          int b = 5;  char *my_stra=NULL;char *my_strb = NULL;        char *temp =NULL;char* str_a = "hello world";          char* str_b = "world hello";my_stra = str_a;my_strb = str_b ;        swap_int(a , b);         // swap_str(str_a , str_b);          printf("%d %d %s %s\n", a , b , str_a , str_b);          temp = my_stra;my_stra =my_strb;my_strb =temp;printf(" %s %s\n",  str_a , str_b);          return 0;      }  

實際上和上面的類似,這裡my_stra和my_strb都是指標變數,指標變數的記憶體位址 分別是str_a和str_b;

此時我們交換my_stra和my_strb實際上只是對他們兩個的地址做變換。

而str_a和str_b是不會有變化的。

聯繫我們

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