Array.lastIndex Method

Retrieves the highest index that is used to store a value in the array.

Syntax

public int lastIndex()

Run On

Called

Return Value

Type: int
An integer that represents the highest index that is used to store a value.

Examples

The following example uses the lastIndex method to find the last element in the array and then add a new value after this element.

{ 
    Array myArray = new Array(Types::Integer); 
    int newValue; 
 
    // Other code - values are added to myArray 
    // and a value is assigned to newValue 
  
    myArray.value(myArray.lastIndex()+1, newValue); 
}

See Also

Array Class

Array.value Method