What is the difference between abstract class and interface?
Resposta da entrevista
Sigiloso
30 de nov. de 2011
abstract class contains implemented methods(have method body) as well as abstract(non-implemented) methods
interface contains only abstract methods(no method body)