Skip to content

Instantly share code, notes, and snippets.

@dlhartveld
Last active December 14, 2015 08:29
Show Gist options
  • Save dlhartveld/5058116 to your computer and use it in GitHub Desktop.
Save dlhartveld/5058116 to your computer and use it in GitHub Desktop.
Simple example of method references with JDK8.
public class MethodReferences {
public void f() { }
public void g() {
Runnable r = this::f;
r.run(); // f() is called.
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment