Skip to content
Advertisement

Tag: multiple-inheritance

Can a normal Class implement multiple interfaces?

I know that multiple inheritances between Interfaces is possible, e.g.: But is it possible to have a regular Class inherit from multiple Interfaces like this: Answer A Java class can only extend one parent class. Multiple inheritance (extends) is not allowed. Interfaces are not classes, however, and a class can implement more than one interface. The parent interfaces are declared

Advertisement