1

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?

jfperea
  • 27
  • 5

1 Answers1

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