Return | Method | Summary |
---|---|---|
void | clear() | Removes all of the elements from this list. |
import java.util.ArrayList;
public class Main {
public static void main(String args[]) {
ArrayList<String> al = new ArrayList<String>();
al.add("C");
al.add("A");
al.add("E");
al.add("java2s.com");
al.add("D");
al.add("F");
al.add(1, "java2s.com");
System.out.println(al);
al.clear();
System.out.println(al);
}
}
The output:
[C, java2s.com, A, E, java2s.com, D, F]
[]
java2s.com | Contact Us | Privacy Policy |
Copyright 2009 - 12 Demo Source and Support. All rights reserved. |
All other trademarks are property of their respective owners. |