int* a; // a 是指標變數 int* &b = a; // b 也是指標變數, 只不過初始化時為a 的別名, 不管用int*& b = a; 或int *&b = a; 結果都相同 int c = 3 ...
確定! 回上一頁