Book Image

Hands-On Automation Testing with Java for Beginners

Book Image

Hands-On Automation Testing with Java for Beginners

Overview of this book

Java is one of the most commonly-used software languages by programmers and developers. Are you from a non-technical background and looking to master Java for your automation needs? Then Hands-On Automation Testing with Java for Beginners is for you. This book provides you with efficient techniques to effectively handle Java-related automation projects. You will learn how to handle strings and their functions in Java. As you make your way through the book, you will get to grips with classes and objects, along with their uses. In the concluding chapters, you will learn about the importance of inheritance and exceptions with practical examples. By the end of this book, you will have gained comprehensive knowledge of Java.
Table of Contents (17 chapters)
Title Page
Copyright and Credits
Packt Upsell
Contributors
Preface
Index

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 we will be storing in it. In this example, we have five integer values that we are planning to store in the array, which is why we have specified the array data type as an integer, and the number of variables to be added is given in the square brackets:

int a...