what is the difference between ArrayList and Vector
Answer Posted / vikas
1. Vector is synchronized while ArrayList is not.
2. Vector has default size is 10 while ArrayList has 10(Look
Java Class).
3. We can specify increment size with Vector.
4. If we use ensureCapacity(int minCapacity) to set the
default increment size then remember following things:
a. Vector v = new Vector();
b. V.capacity(); === output will be 10
c. If you try to set v.ensureCapacity(5),then
d. V.capacity(); ===10
e. If you try to set v.ensureCapacity( >20), then
f. V.capacity();===20 and
g. If you try to set v.ensureCapacity(21), then
h. V.capacity();===21, It clears that if set capacity over
20 then it will be set otherwise no.
| Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
Can a constructor be protected?
What does it mean to flush a file?
What is the difference between member variables initialization and assignment in a constructor?
What are inbuilt functions?
What occurs when an object is constructed?
How will you compute size of a structure?
What is a ternary operator in java?
How to instantiate static nested classes in java?
Why there are some null interface in JAVA? What does it mean? Give some null interface in JAVA?
How does split work in java?
What is the size of an array?
What is the difference between overriding and overloading in OOPS.
What are the drawbacks of singleton class?
What is bitwise complement?
What is ph and buffers?