We learn how the game rolls around once we get to the end of the words, by
using the remainder function %
. Let's say we have 10 words. We always start at
index 0 and go up to index 9. When we then add one to the index we get 10, but
the remainder of dividing 10 by 10 is 0. This is a neat trick to go from 0 to
9, then back to 0, up to 9, back to 0, ad nauseam.
In Java if we try read past the end of an array, we get an
ArrayIndexOutOfBoundsException
. In a language like C, we might end up in
program code. We call this a buffer overflow. Hackers use these all the time
to insert malicious code into systems. Java fortunately won't allow such
mischief.
We hope you enjoyed this tutorial. If you did, you will also enjoy our courses. We suggest you start with Extreme Java - Advanced Java, followed by Extreme Java - Concurrency Performance for Java 8.
We deliver relevant courses, by top Java developers to produce more resourceful and efficient programmers within their organisations.
We can help make your Java application run faster and trouble-shoot concurrency and performance bugs...