Java program to remove an item from Vector collection at the specified index

Given a Vector collection, we have to remove an item from the specified index.
Submitted by Nidhi, on May 19, 2022

Problem Solution:

In this program, we will create an object of the Vector class to store different types of objects. Then we will add objects using add() method. After that, we will remove an item at the specified index from the Vector collection using the remove() method and print the updated vector.

Program/Source Code:

The source code to remove an item from the Vector collection at a specified index is given below. The given program is compiled and executed successfully.

// Java program to remove an item from Vector collection 
// at the specified index

import java.util.*;

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

    vec.add(10);
    vec.add(20.5);
    vec.add(true);

    System.out.println("Vector Elements:");
    for (Object obj: vec) {
      System.out.println("  " + obj);
    }

    vec.remove(2);

    System.out.println("Updated Vector Elements:");
    for (Object obj: vec) {
      System.out.println("  " + obj);
    }
  }
}

Output:

Vector Elements:
  10
  20.5
  true
Updated Vector Elements:
  10
  20.5

Explanation:

In the above program, we imported the "java.util.*" package to use the Vector class. Here, we created a public class Main.

The Main class contains a main() method. The main() method is the entry point for the program. And, created an object vec of the Vector class. Then we used add() method to add items to the Vector collection. After that, we removed an item at the specified index from vector collection using the remove() method and printed the updated vector.

Java Vector Class Programs »



Related Programs



Comments and Discussions!

Load comments ↻





Copyright © 2024 www.includehelp.com. All rights reserved.