Skip to content

Instantly share code, notes, and snippets.

@mcupak
Created May 17, 2018 19:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mcupak/0fab28f49508366e39ae01455821388b to your computer and use it in GitHub Desktop.
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