在Delphi中,Move和CopyMemory (特别是2007及以上版本)有区别吗?
如果是这样,有什么不同?
发布于 2010-01-08 21:37:17
看看Delphi中的windows.pas:
procedure CopyMemory(Destination: Pointer; Source: Pointer; Length: DWORD);
begin
Move(Source^, Destination^, Length);
end;这回答了你的问题吗?:>
https://stackoverflow.com/questions/2027845
复制相似问题