Java Vector.trimToSize()
Syntax
Vector.trimToSize() has the following syntax.
public void trimToSize()
Example
In the following code shows how to use Vector.trimToSize() method.
// w w w . j av a 2 s . co m
import java.util.Vector;
public class Main {
public static void main(String[] args) {
Vector vec = new Vector (10);
vec.add(4);
vec.add(3);
vec.add(2);
vec.add(1);
System.out.println("Size of the vector: "+vec.capacity());
System.out.println("Trimming the vector");
vec.trimToSize();
System.out.println("Size of the vector: "+vec.capacity());
}
}
The code above generates the following result.
Home »
Java Tutorial »
java.util »
Java Tutorial »
java.util »