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