返回列表 發帖

指標 (二)

本帖最後由 tonyh 於 2014-9-13 16:57 編輯

指標變數 --> 專門存放位址的變數
位址運算符號 & --> 取得變數位址
間接運算符號 * --> 取得參考位址內的值

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.      int x=10;
  7.      int *xPtr;  //宣告指標變數 xPtr
  8.      xPtr=&x;    //將變數x的位址 指派給指標變數 xPtr
  9.      //int *xPtr=&x;
  10.      cout<<"變數x的值: "<<x<<endl;
  11.      cout<<"變數x的值: "<<*xPtr<<endl;
  12.      cout<<"變數x的值: "<<*(&x)<<endl;
  13.      cout<<"變數x的位址: "<<&x<<endl;
  14.      cout<<"變數x的位址: "<<xPtr<<endl;
  15.      cout<<"變數x的位址: "<<&(*xPtr)<<endl;
  16.      system("pause");
  17.      return 0;
  18. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

返回列表