2016年1月26日 星期二

JDK 8 List sort

Comparable 與 Comparator



JDK 8 List  sort

persons.sort(
    Comparator.<Person, String>comparing(p -> p.lastName)
      .thenComparing(p -> p.firstName)
      .thenComparing(p -> p.zipCode)
);

沒有留言:

張貼留言