Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
之间的确切区别是什么
mov eax, [ebx]
和
mov eax, ebx
第一个将内存中的 4 个字节移动到 位置ebx,eax第二个将 ebx 的内容移动到 eax。有什么不同?这是什么意思?
ebx
eax
等效于 (C\C++)
*b = a;
至
b = a;
第二条语句说:
将 a 的值复制到 b
第一个说:
复制您在地址中找到的内存块的值