I have an arraylist of objects with an age field internal to the objects. How can I sort them in ascending order dependant on their age?
Thanks for your time
|
I have an arraylist of objects with an age field internal to the objects. How can I sort them in ascending order dependant on their age? Thanks for your time |
|||
|
|
Provide a comparator e.g.
If the age can be a large range, this is not safe, but I assume the age will be between 0 and 2 billion. ;) |
|||||||
|
|
Whenever you're comparing things that don't have a natural, consistent ordering, you shouldn't be implementing This doesn't necessarily mean you have to expose any more data. You can easily expose the Comparator while still encapsulating the
|
|||
|
|
|
The Google Guava way to do this would be best I think:
This assumes the existence of
Both |
|||
|
|