java how to know if is last array code example
Example 1: java find last element in array
int [] numbers = {1, 2, 3, 4, 5};
firstElement = numbers[0];
lastElement = numbers[numbers.length-1];
Example 2: how to get last element of array java
int last = list.get(list.size() - 1);