本文整理自网络,侵删。
给动态数组添加一个元素
type
TOneArray = array of Integer;
procedure AddArrayItem(Arr: TOneArray; x: Integer);
begin
SetLength(Arr,Length(Arr)+1);
Arr[High(Arr)] := x;
end;
相关阅读 >>
processid, process handle, window handle 之间的互相转换
更多相关阅读请进入《Delphi》频道 >>