import java.util.Vector; public class RemoveElement { public static void main(String[] args) { Vector<String> vector = new Vector<String>(); //add element in
Continue readingCategory: remove element of vector
How to remove all element from vector
We can remove all element of vector using clear() method . clear() removes all element from the list and return
Continue reading