返回列表 發帖

指標 (八) - 參數傳遞

本帖最後由 tonyh 於 2014-9-20 16:48 編輯

利用傳遞變數指標的方式,將參數由主函式傳遞至自訂函式.
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. void swap(int *, int *);
  5. int main()
  6. {
  7.      int x=10, y=5;
  8.      cout<<"[對調前]"<<endl;
  9.      cout<<"x="<<x<<endl;
  10.      cout<<"y="<<y<<endl;
  11.      cout<<"變數x的位址: "<<&x<<endl;
  12.      cout<<"變數y的位址: "<<&y<<endl<<endl;
  13.      swap(&x,&y);
  14.      cout<<"[對調後]"<<endl;
  15.      cout<<"x="<<x<<endl;
  16.      cout<<"y="<<y<<endl;
  17.      cout<<"變數x的位址: "<<&x<<endl;
  18.      cout<<"變數y的位址: "<<&y<<endl<<endl;
  19.      system("pause");
  20.      return 0;
  21. }
  22. void swap(int *a, int *b)
  23. {
  24.      int tmp;
  25.      tmp=*a;
  26.      *a=*b;
  27.      *b=tmp;   
  28. }
複製代碼

返回列表