Language basics / Arrays |
The Java™ Array type is an interface to a real Java array type, with the Java array features. Java arrays must be instantiated before usage and have a fixed length.
Name | Description |
---|---|
create(size INTEGER) |
Creates a new instance of a Java array with the given size. |
Name | Description |
---|---|
getLength() RETURNING result INTEGER |
Returns the length of a one-dimensional array. |