With default methods now added to Java 8, is there any way to create a default constructor?
I\'ve tried:
public interface KadContent
{
publ
Constructors are when the objects come into picture and the fact that a object for an interface cannot be constructed is SOUND, be it Java, C# or Java8
So... if you have any functionality that you would want to define by default in the interface level, Java8 introduces the concept of Default Methods.