Vector remove() Method in Java Last Updated : 11 Jul, 2025 Comments Improve Suggest changes Like Article Like Report remove(int index) The java.util.vector.remove(int index) method is used to remove an element from a Vector from a specific position or index. Syntax: Vector.remove(int index) Parameters: This method accepts a mandatory parameter index is of integer data type and specifies the position of the element to be removed from the Vector. Return Value: This method returns the element that has just been removed from the vector. Below program illustrate the Java.util.Vector.remove(int index) method: Java // Java code to illustrate remove() when position of // element is passed as parameter import java.util.*; public class VectorDemo { public static void main(String args[]) { // Creating an empty Vector Vector<String> vec_tor = new Vector<String>(); // Use add() method to add elements in the Vector vec_tor.add("Geeks"); vec_tor.add("for"); vec_tor.add("Geeks"); vec_tor.add("10"); vec_tor.add("20"); // Output the Vector System.out.println("Vector: " + vec_tor); // Remove the element using remove() String rem_ele = vec_tor.remove(4); // Print the removed element System.out.println("Removed element: " + rem_ele); // Print the final Vector System.out.println("Final Vector: " + vec_tor); } } Output: Vector: [Geeks, for, Geeks, 10, 20] Removed element: 20 Final Vector: [Geeks, for, Geeks, 10] remove(Object o) The java.util.vector.remove(Object o) method is used to remove any particular element from the Vector. Syntax: Vector.remove(Object o) Parameters: This method accepts a mandatory parameter o is of the object type of Vector and specifies the element to be removed from the Vector. Return Value: Returns True if the specified element is found and removed from the Vector, else False. Below program illustrate the Java.util.Vector.remove(Object O) method: Java // Java code to illustrate remove() method import java.util.*; public class VectorDemo { public static void main(String args[]) { // Creating an empty Vector Vector<String> vec_tor = new Vector<String>(); // Use add() method to add elements in the Vector vec_tor.add("Geeks"); vec_tor.add("for"); vec_tor.add("Geeks"); vec_tor.add("10"); vec_tor.add("20"); // Output the Vector System.out.println("Vector: " + vec_tor); // Remove the head using remove() Boolean rem_ele; rem_ele = vec_tor.remove("Geeks"); // Print the removed element if (rem_ele) System.out.println("Geeks" + " found and removed."); else System.out.println("Geeks" + " not found or removed."); rem_ele = vec_tor.remove("500"); // Print the removed element if (rem_ele) System.out.println("500" + " found and removed."); else System.out.println("500" + " not found or removed."); // Print the final Vector System.out.println("Final Vector: " + vec_tor); } } Output: Vector: [Geeks, for, Geeks, 10, 20] Geeks found and removed. 500 not found or removed. Final Vector: [for, Geeks, 10, 20] Comment K kundankumarjha Follow 0 Improve K kundankumarjha Follow 0 Improve Article Tags : Misc Java Java-Collections Java - util package Java-Functions Java-Vector +2 More Explore Java BasicsIntroduction to Java3 min readJava Programming Basics9 min readJava Methods6 min readAccess Modifiers in Java4 min readArrays in Java7 min readJava Strings8 min readRegular Expressions in Java3 min readOOP & InterfacesClasses and Objects in Java9 min readAccess Modifiers in Java4 min readJava Constructors4 min readJava OOP(Object Oriented Programming) Concepts10 min readJava Packages7 min readJava Interface7 min readCollectionsCollections in Java12 min readCollections Class in Java13 min readCollection Interface in Java4 min readIterator in Java5 min readJava Comparator Interface6 min readException HandlingJava Exception Handling6 min readJava Try Catch Block4 min readJava final, finally and finalize4 min readChained Exceptions in Java3 min readNull Pointer Exception in Java5 min readException Handling with Method Overriding in Java4 min readJava AdvancedJava Multithreading Tutorial3 min readSynchronization in Java10 min readFile Handling in Java4 min readJava Method References9 min readJava 8 Stream Tutorial7 min readJava Networking6 min readJDBC Tutorial5 min readJava Memory Management4 min readGarbage Collection in Java6 min readMemory Leaks in Java3 min readPractice JavaJava Interview Questions and Answers15+ min readJava Programs - Java Programming Examples7 min readJava Exercises - Basic to Advanced Java Practice Programs with Solutions5 min readJava Quiz1 min readJava Project Ideas For Beginners and Advanced15+ min read Like