With default methods now added to Java 8, is there any way to create a default constructor?
I\'ve tried:
public interface KadContent { publ
Yes, kind of! You can do:
public interface MyInterface { MyInterface NO_OP = new MyInterface() {}; }