4D v13.4

ARRAY LONGINT

Home

 
4D v13.4
ARRAY LONGINT

ARRAY LONGINT 


 

ARRAY LONGINT ( arrayName ; size {; size2} ) 
Parameter Type   Description
arrayName  Array in Name of the array
size  Longint in Number of elements in the array or Number of rows if size2 is specified
size2  Longint in Number of columns in a two-dimensional array

The ARRAY LONGINT command creates and/or resizes an array of 4-byte Longint elements in memory.

  • The arrayName parameter is the name of the array.
  • The size parameter is the number of elements in the array.
  • The size2 parameter is optional; if size2 is specified, the command creates a two-dimensional array. In this case, size specifies the number of rows and size2 specifies the number of columns in each array. Each row in a two-dimensional array can be treated as both an element and an array. This means that while working with the first dimension of the array, you can use other array commands to insert and delete entire arrays in a two-dimensional array.

When applying ARRAY LONGINT to an existing array:

  • If you enlarge the array size, the existing elements are left unchanged, and the new elements are initialized to 0.
  • If you reduce the array size, the last elements deleted from the array are lost.

This example creates a process array of 100 4-byte Long Integer elements:

 ARRAY LONGINT(alValues;100)

This example creates a local array of 100 rows of 50 4-byte Long Integer elements:

 ARRAY LONGINT($alValues;100;50)

This example creates an interprocess array of 50 4-byte Long Integer elements and sets each element to its element number:

 ARRAY LONGINT(◊alValues;50)
 For($vlElem;1;50)
    ◊alValues{$vlElem}:=$vlElem
 End for

 
PROPERTIES 

Product: 4D
Theme: Arrays
Number: 221

 
INDEX

Alphabetical list of commands

 
HISTORY 

Created: < 4D v6

 
SEE ALSO 

ARRAY INTEGER
ARRAY REAL