Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道,如何制作一个元素数量未知的一维数组。
例如:
Name: array[1..x] of Integer;
其中 x 是用户稍后在程序中输入的整数。
将您的数组声明为动态的,请参阅文档。您可以SetLength在运行时使用它来设置它的长度,并Length获取元素的数量。
SetLength
Length
你不能。如果要在变量之间建立动态链接,则需要使用Lists。这是一个如何制作的示例。