Mega Code Archive

 
Categories / Java Tutorial / Collections
 

When removing all the elements from a vector, the capacity does not change

import java.util.Vector; public class MainClass {   public static void main(String args[]) {     Vector v = new Vector(5);     for (int i = 0; i < 10; i++) {       v.add(i,0);     }     System.out.println(v.capacity());     System.out.println(v);          v.clear();          System.out.println(v);     System.out.println(v.capacity());        } } 10 [0, 0, 0, 0, 0, 0, 0, 0, 0, 0] [] 10