public class Foo { private final Runnable runnable = () -> System.out.println("I think " + someThought); private final String someThought = "I love burgers !"; }
here public static int compareByAge(Person a, Person b) { return a.birthday.compareTo(b.birthday); } } Arrays.sort(arrayOfPersons, Person::compareByAge);