Eliminate the final item in the list.
import public
}
|
Definition and Usage
The removeLast() method eliminates the final item in a list.
Tip: Employ the removeFirst() method to remove the initial item in a list.
Syntax
public T removeLast() |
T refers to the data type of items within the list.
Parameters
None.
Technical Details
Returns: | The deleted element (the last item in the list) |
Throws: | NoSuchElementException – If the list is empty. |