Java Vector.size()

Syntax

Vector.size() has the following syntax.

public int size()

Example

In the following code shows how to use Vector.size() method.


/*w  w w . jav a2 s .  c om*/
import java.util.Vector;

public class Main {
   public static void main(String[] args) {
           
      Vector  vec = new Vector  (4);

      
      vec.add(4);
      vec.add(3);
      vec.add(2);
      vec.add(1);

      System.out.println("Size of the vector: "+vec.size());                 
   }    
}

The code above generates the following result.