Pergunta de entrevista da empresa Kilmist Corp

difference between interface and abstract class

Resposta da entrevista

Sigiloso

7 de mai. de 2016

Interface is type in which an abstract member is declared and is implemented in child class. The class under which we declare an abstract method is called abstract class and this get accessed in child class. The main difference is the interface contains on an abstract method where as abstract class contains an abstract as well as other method also.

1