Delphi Memory 函数

procedure MoveMemory(Destination: Pointer; Source: Pointer; Length: NativeUInt);
begin
  Move(Source^, Destination^, Length);
end;

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

procedure FillMemory(Destination: Pointer; Length: NativeUInt; Fill: Byte);
begin
  FillChar(Destination^, Length, Fill);
end;

procedure ZeroMemory(Destination: Pointer; Length: NativeUInt);
begin
  FillChar(Destination^, Length, 0);
end;


procedure FillChar(var X; Count: Integer; Value: Ordinal);
 

Fills contiguous bytes with a specified value.
In Delphi, FillChar fills Count contiguous bytes (referenced by X) with the value specified by Value (Value can be of type Byte or AnsiChar) 

Note
that if X is a UnicodeString, this may not work as expected, because FillChar expects a byte count, which is not the same as the character count.

In addition, the filling character is a single-byte character. 
Therefore, when Buf is a UnicodeString, the code FillChar(Buf, Length(Buf), #9); 
fills Buf with the code point $0909, not $09. In such cases, 

you should use the StringOfChar routine. 

Warning: This function does not perform any range checking.
Warning: This method has an untyped parameter, which can lead to memory corruption.
To avoid this problem, use SizeOf to find the number of bytes appropriate to fill for the data type of the X parameter.

function SizeOf(var X): Integer;

Returns the number of bytes occupied by a variable or type.
Pass a Delphi variable reference to SizeOf to determine the number of bytes used to represent the variable.
Pass a type identifier to SizeOf to determine the number of bytes used to represent instances of that type.
SizeOf is useful for determining the amount of memory to specify for the FillChar, Move, or GetMem procedures.
SizeOf returns 0 when the argument is an untyped variable.

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

Copies bytes from a source to a destination.
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) to determine the count.
Note:
This method has an untyped parameter (Dest), which can lead to memory corruption.
To avoid this problem, use SizeOf to determine the number of bytes appropriate
to "move" for the data type being used in Count parameter.

 

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值