Statistics
The Highest Post







Statistics
Count 98
Avg 20.27
Min 3
Max 21
Angualr Top questions

Details



Peter Agyekum What is the difference between abstract class and an interface? Both have declaration but... An abstract class allows you to create functionality that subclasses can implement or override. An interface only allows you to declare functionality, not implement it. And whereas a class can extend only one abstract class, it can take advantage of multiple interfaces.
Related Topics