pascal中move是什么函数 怎么用 要详细的解释

来源:百度知道 编辑:UC知道 时间:2024/06/14 16:46:13
跪求.........

Delphi syntax:

procedure Move(const Source; var Dest; Count: Integer);

C++ syntax:

extern PACKAGE void __fastcall Move(const void *Source, void *Dest, int Count);

Description

Move copies Count bytes from Source to Dest. No range checking is performed. Move compensates for overlaps between the source and destination blocks.

Whenever possible, use the global SizeOf function (Delphi) or the sizeof operator (C++) to determine the count.

...楼上的搬了我的博客....orz...