RosettaCodeData/Task/Collections/Java/collections-4.java

6 lines
120 B
Java
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
//remove the last entry in the ArrayList
myarrlist.remove(myarrlist.size()-1)
//clear the ArrayList
myarrlist.clear();