Skip to content

Instantly share code, notes, and snippets.

@tamboer
Forked from shadowfacts/7.java
Created December 16, 2017 12:37
Show Gist options
  • Save tamboer/adb912801fac0d4ffc65b3591c43c16d to your computer and use it in GitHub Desktop.
Save tamboer/adb912801fac0d4ffc65b3591c43c16d to your computer and use it in GitHub Desktop.
Java 8 lambda example
Runnable thingy = new Runnable() {
public void run() {
System.out.println("Annonymous class");
}
}
somethingElse(thingy);
somethingElse(() -> {
System.out.println("Lambdas!");
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment