As I know the subclass constructor calls the super class constructor by using super();.
But since interface doesn\'t have any constructor, how can inheritance take
But since interface doesn't have any constructor how can inheritance take place??
Easy, an interface cannot have any instance fields so there is nothing to construct. You cannot place in code in an interface (up to Java 7 anyway) so there is nothing which needs to be called.