Skip to content

Instantly share code, notes, and snippets.

@cobratbq
Last active March 23, 2016 22:28
Show Gist options
  • Save cobratbq/b16f3a04e36dfb3bff27 to your computer and use it in GitHub Desktop.
Save cobratbq/b16f3a04e36dfb3bff27 to your computer and use it in GitHub Desktop.
Example of default method in Java.
public interface Representable {
String representation();
default String reverse() {
final StringBuilder builder = new StringBuilder(this.representation());
return builder.reverse().toString();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment