java get last item in array code example

Example 1: get last element of array java

firstNum = numbers[0];
lastNum = numbers[numbers.length-1];

Example 2: java find last element in array

int [] numbers = {1, 2, 3, 4, 5};

firstElement = numbers[0];
lastElement = numbers[numbers.length-1];

Example 3: how to find last element in array java

// GIVE FIRST NUMBER AND LAST NUMBER
firstNum = numbers[0];
lastNum = numbers[numbers.length-1];

Example 4: arraylist get last

E e = list.get(list.size() - 1);

Example 5: how to get last element of array java

int last = list.get(list.size() - 1);

Tags:

Java Example