del
type
  TOneArray = array of Integer;

procedure AddArrayItem(Arr: TOneArray; x: Integer);
begin
  SetLength(Arr,Length(Arr)+1);
  Arr[High(Arr)] := x;
end;

分类:

技术点:

相关文章:

  • 2022-12-23
  • 2021-11-21
  • 2022-02-09
  • 2022-12-23
  • 2022-12-23
  • 2022-02-05
  • 2021-12-05
  • 2022-02-09
猜你喜欢
  • 2022-12-23
  • 2021-10-26
  • 2021-11-29
  • 2021-12-11
  • 2022-12-23
  • 2021-12-29
相关资源
相似解决方案