I would like to tell if the next line is different from the current line or this is the last line.
Is that sure that I won't get an ArrayIndexOutOfBoundsException if I use this code?
And is it a good way to check this?
for (current_line = 0; current_line < lines_array.length; current_line++) {
/* ... */
boolean nextLineIsDifferentOrThereIsNoNextLine =
(current_line + 1 >= max_lines) ? true :
!lines_array[current_line].equalsIgnoreCase(lines_array[current_line + 1]);
/* ... */
}
edit:
I've tried it with a small array and I didn't get any exceptions. How could it be? :S