Search code examples
javalambdafunctional-programmingjava-8

Sorting ArrayList with Lambda in Java 8


Could somebody show me a quick example how to sort an ArrayList alphabetically in Java 8 using the new lambda syntax.


Solution

  • For strings this would work

    arrayList.sort((p1, p2) -> p1.compareTo(p2));