Pregunta de entrevista de eBay

What is the difference between abstract class and interface?

Respuesta de la entrevista

Anónimo

25 ene 2011

An abstract class can have instance methods that implement a default behavior. An Interface can only declare constants and instance methods, but cannot implement default behavior and all methods are implicitly abstract. 2. An interface has all public members and no implementation. An abstract class is a class which may have the usual flavors of class members (private, protected, etc.), but has some abstract methods. 3. A class can extend only one abstract class but implement any number of interfaces.

1