| Author |
Disadvantage of using Vectors
|
B Mampilli
Ranch Hand
Joined: Aug 05, 2002
Posts: 61
|
|
I am using vectors to store results retrieved by servlets from the database. These vectors are then used by JSP's to display on the html page. Is there any disadvantage of using vectors? Should Hashtables be used instead of Vectors? Boney
|
 |
Amol Desai
Ranch Hand
Joined: Jan 29, 2003
Posts: 82
|
|
Hi, You could use arraylist instead. ArrayList are faster than vectors since they are unsynchronised.
|
 |
 |
|
|
subject: Disadvantage of using Vectors
|
|
|