delphi – 为什么我不能在接收数组参数的函数中使用SetLength?

栏目: 编程语言 · 发布时间: 5年前

内容简介:翻译自:https://stackoverflow.com/questions/12958858/why-can-i-not-use-setlength-in-a-function-which-receives-an-array-parameter

我试图使用以下函数来设置动态数组的长度,这是一个var param.

我尝试编译代码时只有一个错误:

[dcc64错误] lolcode.dpr(138):E2008不兼容的类型

function execute(var command : array of string) : Boolean;
begin
  // Do something
  SetLength(command,0);
end;

定义类型

type
  TStringArray = array of string;

你可以做到

function Execute(var StringArray: TStringArray): boolean;
begin
  // Do something
  SetLength(StringArray, 0);
end;

翻译自:https://stackoverflow.com/questions/12958858/why-can-i-not-use-setlength-in-a-function-which-receives-an-array-parameter


以上所述就是小编给大家介绍的《delphi – 为什么我不能在接收数组参数的函数中使用SetLength?》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Python Data Structures and Algorithms

Python Data Structures and Algorithms

Benjamin Baka / Packt Publishing / 2017-5-30 / USD 44.99

Key Features A step by step guide, which will provide you with a thorough discussion on the analysis and design of fundamental Python data structures.Get a better understanding of advanced Python c......一起来看看 《Python Data Structures and Algorithms》 这本书的介绍吧!

CSS 压缩/解压工具
CSS 压缩/解压工具

在线压缩/解压 CSS 代码

在线进制转换器
在线进制转换器

各进制数互转换器

正则表达式在线测试
正则表达式在线测试

正则表达式在线测试