Java program to create a vector to store integer elements

Java example to create a vector to store integer elements.
Submitted by Nidhi, on May 18, 2022

Problem Solution:

In this program, we will create an object of the Vector class to store integer elements. Then we will add elements using add() method and print created vector.

Program/Source Code:

The source code to create a vector to store integer elements is given below. The given program is compiled and executed successfully.

// Java program to create a vector to 
// store integer elements

import java.util.*;

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

    for (int i = 10; i <= 15; i++)
      vec.add(i);

    System.out.println("Vector Elements:\n" + vec);
  }
}

Output:

Vector Elements:
[10, 11, 12, 13, 14, 15]

Explanation:

In the above program, we imported the "java.util.*" package to use the Vector class. Here, we created a public class Main that contains a main() method.

The main() method is the entry point for the program. Here, we created an object vec of the Vector class and added elements to it using add() method and printed the created vector.

Java Vector Class Programs »



Related Programs




Comments and Discussions!

Load comments ↻






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