โ Back to Methods
Question 182
Return the Last Item from a Generic ArrayList
Return the Last Item from a Generic ArrayList
Complete the generic methodgetLastItemthat takes anArrayList<T>and returns the last element. You may assume the list is not empty. IMPORTANT: Do NOT write a main method. A hidden test will callGenericTools.getLastItemwith a String list and an Integer list and print the last element from each.
Expected Output:
Clara 30
Topics:
GenericsMethods
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.