- Let's say I've created a
final staticinstance of the classComparatorChain. - Through
Collections.sort(List<T> list, Comparator<? super T> c)I'm using this instance. - Somewhere in
Collections.sort(List<T> list, Comparator<? super T> c)Comparator.compare(T o1, T o2)is called on theComparatorChaininstance.
Now my beginners question:
When multiple threads use this static instance can they all call the Comparator.compare(T o1, T o2) method at the same time?
I'd suppose that as long as there is no synchronized modifier involved, they could. Is this right?
Why do I want to know this?
Through such a static instance I could avoid the useless creation of ComparatorChain objects.