Skip to content

Instantly share code, notes, and snippets.

@mcupak
Created May 17, 2018 19:05
Show Gist options
  • Select an option

  • Save mcupak/0fab28f49508366e39ae01455821388b to your computer and use it in GitHub Desktop.

Select an option

Save mcupak/0fab28f49508366e39ae01455821388b to your computer and use it in GitHub Desktop.
interface MyInterface {
void abstractMethod();
default void defaultMethod() {
System.out.println("default method called");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment