Clear a collection

ReturnMethodSummary
voidclear()Removes all of the elements from this collection (optional operation).

import java.util.ArrayList;
import java.util.Collection;

public class Main {

  public static void main(String args[]) {
     Collection collection = new ArrayList();
     collection.add("java2s.com");
     
     System.out.println(collection);
     
     collection.clear();
     
     System.out.println(collection);
     
  }
}

The output:


[java2s.com]
[]
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.