Java / Interface
Can an Interface implement another interface?
No. Interface doesn't provide implementation hence it is not possible.
However an Interface can extend (inherit) another interface, also multiple interface
public interface MyMainInterface extends ParentA, ParentB { } interface ParentA{ } interface ParentB{ }
More Related questions...