how to get last element in array 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: java get last element of list

ArrayList<Integer> list = new ArrayList<Integer>(5); 
int last = list.get(list.size() - 1);

Example 4: how to get the last element of array in java

int[] arr = new int[5]; //length of the array is 5
int val = arr[arr.length - 1]; //here variable val stores the last element of arr

Example 5: find last element in array in java

firstNum = numbers.get(0);
lastNum = numbers.get(numbers.size() - 1);

Example 6: how to get last element of array java

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