Book Image

Learn Java with Projects

By : Dr. Seán Kennedy, Maaike van Putten
5 (3)
Book Image

Learn Java with Projects

5 (3)
By: Dr. Seán Kennedy, Maaike van Putten

Overview of this book

Learn Java with Projects stands out in the world of Java guides; while some books skim the surface and others get lost in too much detail, this one finds a nice middle ground. You’ll begin by exploring the fundamentals of Java, from its primitive data types through to loops and arrays. Next, you’ll move on to object-oriented programming (OOP), where you’ll get to grips with key topics such as classes, objects, encapsulation, inheritance, polymorphism, interfaces, and more. The chapters are designed in a way that focuses on topics that really matter in real-life work situations. No extra fluff here, so that you get more time to spend on the basics and form a solid foundation. As you make progress, you’ll learn advanced topics including generics, collections, lambda expressions, streams and concurrency. This book doesn't just talk about theory—it shows you how things work with little projects, which eventually add up to one big project that brings it all together. By the end of this Java book, you’ll have sound practical knowledge of Java and a helpful guide to walk you through the important parts of Java.
Table of Contents (22 chapters)
1
Part 1: Java Fundamentals
9
Part 2: Object-Oriented Programming
15
Part 3: Advanced Topics

Accessing elements in an array

In order to access elements in an array, we need to use their index. The index represents the position in the array. This allows us to retrieve the value at a certain position and assign it a new value. Let’s first talk about indexing.

Understanding indexing

In Java, arrays use zero-based indexing, which means the first element has an index of 0, the second element has an index of 1, and so on. Take a look at our example of the ages array:

int[] ages = {31, 7, 5, 1, 0};

This means that the first element (31) has an index of 0 and the last element has an index of 4.

Figure 6.1 – Indexing explained with the ages array

Figure 6.1 – Indexing explained with the ages array

We count the length of an array like we normally do, starting with 1. So, the length of this array would be 5. The last element in the array has an index equal to the array’s length minus 1. For an array with a length of N, the valid indexes are in the range of 0 to N-1.

It is...