I have a List<Foo>, and a compare() method taking two Foo objects and returning the 'greater' one. Is there a built-in Java method that takes the list and finds the largest one?
|
|
|
|||
|
|
|
|
If If not, you can create a Example
|
|||
|
|
|
|
Yes, the List is a subclass of Collection and so you can use the max method. |
||
|
|
|
|
try |
||
|
|
|
|
Use |
||
|
|
|
|
Take a look at Google Collections - they have lots of methods that help you do this sort of thing using Predicates. |
||
|
|
|
|
Take a look at lambdaj as well. There are lots of feature to manipulate collection in a functional style. |
||
|
|
