0
Can a class implement multiple interfaces?
Interface
3 Respostas
+ 2
That is how you achieve multiple inheritance in Java. Abstract classes need not provide the implementation for the methods in interface it is implementing. But you have to implement all the methods of interface if it's a concrete class that is implementing it.
Also do what ~ swim ~ has mentioned because you tend to forget things if you don't use it for some time.
+ 1
if you are talking about java, then yes.
a class can implement multiple interfaces but it can only extend 1 abstract class.