任何人都可以告訴我指針和呼叫引用之間的確切區別。其實這兩種情況都發生了什麼?呼叫引用和指針呼叫之間的區別
如:
調用由參考:
void swap(int &x, int &y)
{
int temp;
temp = x; /* save the value at address x */
x = y; /* put y into x */
y = temp; /* put x into y */
return;
}
swap(a, b);
調用由指針:
void swap(int *x, int *y)
{
int temp;
temp = *x; /* save the value at address x */
*x = *y; /* put y into x */
*y = temp; /* put x into y */
return;
}
swap(&a, &b);
在java中沒有指針。 –
爲什麼標記* java *? – Nawaz
這個問題與Java無關。 –