arraylist first element index code example
Example 1: java last element in array
arrayName[arrayName.length() - 1];
Example 2: java list get first element
!list_or_set.isEmpty()
Example 3: java first index of an arraylist
ArrayList<Type> array = new ArrayList<Type>();
System.out.printLn(array[0]);