+ 2
Collection Framework ArrayList <String>=new ArrayList(10),Vector<String>=new Vector<String>(10) what is the diff???
arraylist and vector diff ...as I know vector contains synchronous methods
4 Answers
+ 5
A Vector defaults to doubling the size of its array, while theArrayList increases its array size by 50 percent. As the documentation says, a Vector and an ArrayList are almost equivalent. The difference is that access to a Vector is synchronized, whereas access to an ArrayList is not.
+ 4
Please post a smaller title and add those lines of code in the question body.
+ 1
Check it out Pegasus
0
Thanks for Ur time .âş