Domanda di colloquio di Datto

Difference between an Interface and Abstract Class

Risposta di colloquio

Anonimo

29 apr 2015

Interfaces define method signatures and not their implementation, it's a "contractual template" for other classes to implement. The implementing class must implement all methods. Abstract classes define method signatures and partial implementation/behaviour ("guidelines"). Good base/core classes for others to extend from.