I am really confused on how these 2 collections behave in multithreaded environment.
Hash table is synchronized that means no 2 threads will be updating its value simultaneously right?
It's been a while since I've used hashtable for anything significant, but I seem to recall the get() and put() methods being synchronized.
The JavaDocs don't reflect this. They simply say ...
Hi, While going through java tutorials i read we can use Hashtable and Vector collection object's if we need thread safety. I need to know whether there will be any senario where we need to have extra code for handling thread issues even though we are using able collections ? Thanks Harish