If the Java TreeSet is set with a comparator to deal with the objects sorting logic But the objects ( class) also implements comparable and have valid compareTo method implemented on it.
Which one takes priority? The logic within the comparator or the logic in the compareTo method?
Many thanks.