Vector represents a collection of similar items. In Java, the Vector
class is defined in java.util package that implements a growable array of
objects. Like an array, its items can be accessed using an integer index. Once
the Vector has been created, the size of
a Vector
can be grown or reduced as needed to adding and removing items to that vector.
Vectors are extremely easy to use, and implement the Enumeration interface
which makes traversing the contents of a Vector extremely easy.
Creating a vector is easy. You just need to simply define a variable of type
Vector, and call the vector constructor.
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.
Ask Questions? Discuss: Java Vector
Post your Comment