The ability to create default implementations of methods within a Java Interface.

public interface MyInterface {
	void show();
	default void myDefault(){
		// function body
	}
}