6 lines
120 B
Java
6 lines
120 B
Java
|
|
//remove the last entry in the ArrayList
|
||
|
|
myarrlist.remove(myarrlist.size()-1)
|
||
|
|
|
||
|
|
//clear the ArrayList
|
||
|
|
myarrlist.clear();
|