Hi i want to know is there any performance issue if i make ArrayList thread safe using Collections.synchronizedList() method? if there is issue, on which functionality it affect like addition ,searching etc.
I am getting concurrent Modification Exception to get rid of it i used Collections Synchronized method but later i came to know it has some performance issue? my question is very simple which approach should i use without affecting performance...
Vector?