what is the difference between ArrayList and Vector
Answer Posted / payel
I would like to answer this question as point...which would be easier to remember
1.Vector is synchronized whereas an arraylist is not synchronized
2.Vector is an object whereas an arraylist is a part of the collection framework
3.Vector has a default size of 10 whereas an arraylist has no default size
4.Vector requires an iterator to display its contents whereas an arraylist does not require any iterator
5.Vector defines an increment size whereas an arraylist does not define any increment size
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
What is meant by tab pans?
Explain the significance of class loaders in bootstrap?
What is the function of http?
What is the platform?
How do you empty a list in java?
What is the difference between and ?
Is set thread safe java?
What ide should I use for java?
What are different data types?
what is the constructor and how many types of constructors are used in java?
Can an interface be defined inside a class?
List primitive java types?
What are the steps involved to write rmi based programs?
What is the purpose of methodology?
Implement a stack with push (), pop() and min() in O(1) time.