Java / Set and its implementations
Does TreeSet use hashcode method?
TreeSet does NOT use hashCode. It uses either compareTo or the Comparator passed to the constructor. This is used by methods like contains to find objects in the set.
More Related questions...