What is vector class?

Started by chinmay.sahoo, 03-17-2016, 02:05:49

Previous topic - Next topic

chinmay.sahooTopic starter

Vector class provides the capability to implement array of objects.


TomClarke

A vector class implements the dynamic  array  that can grow and shrink at run time (dynamically). It resembles the implementation of ArrayList with a difference that vector is synchronized.


Paavni

The Vector class implements a dynamic array. In the vector class, a component is stored at an integer index and it can be accessed by this index number like an Array. A Vector is synchronised and it contains many legacy methods that are not part of the collection framework.
newbielink:http://nationkart.com/blog/sell-handicrafts-online/ [nonactive]
  •  

saravjeet

A Vector class implements the dynamic array that can grow and shrink at run time (dynamically). ... The Vector class implements an incremental array of objects.