Hi,
need to have some kind of clear understanding regarding the synchronized behavior of arraylist and vector. when we say that Vector is synchronized and arraylist is not, does it mean that
1. when multiple threads access vector and modify its contents, one
thread will see updated copy of the vector before modification
2. when multiple threads access arraylist and modify its contents, one thread will see updated copy of the arraylist before modification only if the arraylist is properly synchronized.
is there anything more than what I said?
Regards,