代码之家  ›  专栏  ›  技术社区  ›  JPvdMerwe

在Delphi中移动vs copymemory

  •  11
  • JPvdMerwe  · 技术社区  · 15 年前

    Delphi中的move和copymemory有区别吗(特别是2007及更高版本)?

    如果是,有什么区别?

    1 回复  |  直到 15 年前
        1
  •  27
  •   Kornel Kisielewicz    15 年前

    在Delphi中查看windows.pas:

    procedure CopyMemory(Destination: Pointer; Source: Pointer; Length: DWORD);
    begin
      Move(Source^, Destination^, Length);
    end;
    

    那能回答你的问题吗?&: