Skip to content

Instantly share code, notes, and snippets.

@ankurpshah
Created July 27, 2013 08:45
Show Gist options
  • Save ankurpshah/6094277 to your computer and use it in GitHub Desktop.
Save ankurpshah/6094277 to your computer and use it in GitHub Desktop.
Java 8 Lambda example
public FunctionalHelloButtonApp() {
button.addActionListener(
#{ ActionEvent e -> System.out.println("Hello There: event received: "+e) }
);
}
package functions;
public interface Function2<A1, A2, R> {
R apply(A1 a1, A2 a2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment