Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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);
}