I have to do a program using arrays of objects to make a person type object that receives ID, name, gender ... etc. which is better to use arraylist or vectors?
Asked
Active
Viewed 53 times
1 Answers
1
ArrayList
is better (with Collections.synchronizedList
if you need a thread-safe list, which I doubt you do). See this question.

mapeters
- 1,067
- 7
- 11