如何在Delphi中获取动态数组的长度

如何在Delphi中获取动态数组的长度

本文介绍了如何在Delphi中获取动态数组的长度?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

限时删除!!

在Delphi中是否有确定动态数组长度的函数?

Is there a function to determine length of a dynamic array in Delphi ?

推荐答案

使用函数来获取数组的长度:

Use Length function to get the length of your array:

var
  ArrayLength: Integer;
begin
  ArrayLength := Length(ArrayOfSomething);
  ...
end;

从此功能的参考文献(由我强调):

From the reference for this function (emphasized by me):

这篇关于如何在Delphi中获取动态数组的长度?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

1403页,肝出来的..

09-06 15:15