- 1
Difference between interface and abstract class??please read description
Can somebody provide a example where abstract class is used and at that place interface cannot be and vice versa??
1 Answer
0
Abstract classes can have attributes and normal methods which interfaces can not (until Java 8.....) while a class can implement multiple interfaces and extend only one class.