Skip to content

Instantly share code, notes, and snippets.

@blabadi
Created September 8, 2014 09:53
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 blabadi/926e1b1d54c093dd6e80 to your computer and use it in GitHub Desktop.
Save blabadi/926e1b1d54c093dd6e80 to your computer and use it in GitHub Desktop.
package com.blabadi.jdk8.defaultmethods;
public interface IHaveDefault {
void doStuff();
default void undoStuff(){
System.out.print("k");
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment