get last element from list java code example
Example 1: get last element of array java
firstNum = numbers[0];
lastNum = numbers[numbers.length-1];
Example 2: java last element in array
arrayName[arrayName.length() - 1];
Example 3: arraylist get last
E e = list.get(list.size() - 1);
Example 4: how to get last element of array java
int last = list.get(list.size() - 1);
Example 5: get last n elements from list java
List<E> tail = l.subList(Math.max(l.size() - 3, 0), l.size());