![]() |
sponsored links |
|
|
sponsored links
|
|
|
7
22nd May 02:18
External User
Posts: 1
|
Im Artikel <c7d8270c.0401141144.2a60e676@posting.google.com>,
gazzac2k@hotmail.com (Gaz) schreibt: Arrays are not so complicated. Think of an array as a street, with houses. Every array has a fixed (or in Delphi variable) length, and contains members (houses) of a certain common data type (array[from, to] of ...). The data type may be "record", it is not restricted to a single basic type (integer, string...). There may exist undefined elements (houses not yet constructed) in an array, usually arrays are filled in sequential order and the amount of entered elements is recorded in an associated variable. Every array element has an unique array index (house number), by which it can be referenced (read or It's up to you to define the size and data type of the array first, then to store values in the array elements, and finally to use (read or update) the elements by means of their index (ArrayName[IndexNumber]). Hope this description helps you a bit :-) DoDi |
|