What will happen if I supply a non-transitive Comparator to Collections.sort? Can I run into infinite loop?
A small test I wrote produced an output, but I want to make sure this will always be the case.
The problem is that in some cases, my comparator can produce cycles, and in this case I just want to make sure it will not run into infinite loop. I don't care about the actual result.
Comparatoris not defined, as a non-transitiveComparatoris not properly implemented. In practice, I'm pretty sure thatCollections.sort()will not run in an infinite loop, even if theComparatoris broken. But nothing in the specifications requires this behaviour. – Joachim Sauer Oct 31 '11 at 8:25