Pergunta de entrevista da empresa Iron Group

What is the difference between an abstract class and an Interface ?

Resposta da entrevista

Sigiloso

21 de nov. de 2020

An abstract class is where you can create functionality that subclasses can inherit or override. An interface is just the definition of functionality. You can only inherit from one abstract class. But you can implement multiple interfaces.