I have a list of point objects, which I want to sort by a certain coordinate, say the x-values. Does Java provide any useful mechanisms or should I avail myself of one of the common sort algorithms?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Yes create a custom
|
||||
|
|
|
In Assume:
|
|||
|
|
|
You should either make your point class to implement Comparable interface or provide sort() method with your own Comparator object, which tells sort() how to order your objects. There a lot of examples around here. |
|||
|
|
|
You can use something like a Bean Comparator so you don't have to keep creating custom Comparators. |
|||
|
|
