Skip to content
Advertisement

How can I avoid java.lang.ArrayIndexOutOfBoundsException when joining a Queue?

I’m working on a simple(?) exercise for my Data Structures class. It works fine right up until I have an element leave the queue then try to add another one on at which point I get the following error:

Exception in thread “main” java.lang.ArrayIndexOutOfBoundsException: Index 10 out of bounds for length 10 at queueExercise.IntegerQueue.join(IntegerQueue.java:20) at queueExercise.IntegerQueueTest.main(IntegerQueueTest.java:27)

My code is as follows:

Queue Constructor Class:

JavaScript

Test Class

JavaScript

Advertisement

Answer

The problem is in the join method and more precisely in the condition if (end == queue.length). All you have to do is change it to if (end == queue.length - 1).

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement