
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Add Elements at the End of a Vector in Java
Elements can be added at the end of a Vector using the java.util.Vector.add() method. This method has a single parameter i.e. the element to be added. It returns true if the element is added to the Vector as required and false otherwise.
A program that demonstrates this is given as follows:
Example
import java.util.Vector; public class Demo { public static void main(String args[]) { Vector vec = new Vector(5); for (int i = 1; i <= 10; i++) { vec.add(i); } System.out.println("The Vector elements are: " + vec); } }
Output
The Vector elements are: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
Now let us understand the above program.
The Vector is created. Then Vector.add() is used to add the elements to the Vector using a for loop. Finally, the Vector elements are displayed. A code snippet which demonstrates this is as follows:
Vector vec = new Vector(5); for (int i = 1; i <= 10; i++) { vec.add(i); } System.out.println("The Vector elements are: " + vec);
Advertisements