Statistics
The Highest Post







Statistics
Count 94
Avg 21.00
Min 21
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