RosettaCodeData/Task/Collections/Java/collections-4.java
Ingy döt Net 80737d5a6a new tasks
2013-04-09 00:46:50 -07:00

5 lines
120 B
Java

//remove the last entry in the ArrayList
myarrlist.remove(myarrlist.size()-1)
//clear the ArrayList
myarrlist.clear();