Arrays and their usage in Java programs

We might have come across the term array in the past, so let's see what arrays are with an explanation and an example.

An array is a container that stores multiple values of the same data type.

In the following example, we will see what a container is, how to define that container, and how we can store values in them.

If we want to work with arrays, we declare them by allocating some space for them using the following code:

int a[] = new int[];

The new keyword basically allocates memory for a value in this array. The square brackets mean that we are adding multiple values into the brackets, [] indicates the term for the array. To define an array, we have to create space for the multiple values that ...

Get Hands-On Automation Testing with Java for Beginners now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.