How to access last element of list in java code example

Example 1: how to get last item in list

# The smart way

list = ["first item", "second item", "third item"]
print(list[len(list) - 1])

# The proper way
print(list[-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: arraylist get last

E e = 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());

Tags:

Misc Example