Clear out all of the Vector elements in Java


A Vector can be cleared in Java using the method java.util.Vector.clear(). This method removes all the elements in the Vector. There are no parameters required by the Vector.clear() method and it returns no value.

A program that demonstrates this is given as follows −

Example

 Live Demo

import java.util.Vector;
public class Demo {
   public static void main(String args[]) {
      Vector vec = new Vector(5);
      vec.add(4);
      vec.add(1);
      vec.add(3);
      vec.add(9);
      vec.add(6);
      vec.add(2);
      vec.add(8);
      System.out.println("The Vector elements are: " + vec);
      vec.clear();
      System.out.println("The Vector elements are: " + vec);
   }
}

The output of the above program is as follows −

The Vector elements are: [4, 1, 3, 9, 6, 2, 8]
The Vector elements are: []

Now let us understand the above program.

The Vector is created. Then Vector.add() is used to add the elements to the Vector. The Vector is displayed before and after using the Vector.clear() method which clears the Vector. A code snippet which demonstrates this is as follows −

Vector vec = new Vector(5);
vec.add(4);
vec.add(1);
vec.add(3);
vec.add(9);
vec.add(6);
vec.add(2);
vec.add(8);
System.out.println("The Vector elements are: " + vec);
vec.clear();
System.out.println("The Vector elements are: " + vec);

Updated on: 30-Jun-2020

245 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements