如下,是一個利用內嵌匯編實現的兩整數交換的程序。輸出結果是2,1;2,1;1,2;2,1.可以看到Swap2這個函數行不通,在函數內兩個變量確實交換了,但是調用後a和b沒有交換,仍然是2,1。就像是傳值一樣,而沒有傳址,令我很困惑。
#include <cstdio>
void Swap1(int &_int1, int &_int2);
void Swap2(int &_int1, int &_int2);
int main() {
int a = 1, b = 2;
Swap1(a, b);
printf("%d,%d;", a, b);
Swap2(a, b);
printf("%d,%d.", a, b);
return 0;
}
void Swap1(int &_int1, int &_int2) {
unsigned c = _int1, d = _int2;
__asm {
mov ebx, [c];
xchg ebx, [d];
mov [c], ebx;
}
_int1 = c;
_int2 = d;
printf("%d,%d;", _int1, _int2);
}
void Swap2(int &_int1, int &_int2) {
__asm {
mov ebx, [_int1];
xchg ebx, [_int2];
mov [_int1], ebx;
}
printf("%d,%d;", _int1, _int2);
}
請各位朋友幫忙看看為什麼會這樣。
21: Swap2(a, b);
0040107B lea ecx,[ebp-8]
0040107E push ecx
0040107F lea edx,[ebp-4]
00401082 push edx
00401083 call @ILT+0(Swap2) (00401005)
00401088 add esp,8
22: printf("\n-%d,%d.", a, b);
0040108B mov eax,dword ptr [ebp-8]
0040108E push eax
0040108F mov ecx,dword ptr [ebp-4]
00401092 push ecx
00401093 push offset string "\n-%d,%d." (0042201c)
00401098 call printf (004011d0)
0040109D add esp,0Ch
根據如上代碼,printf用的是本函數堆棧上的int1 int2,缺少一個寫回的動作