InterviewSolution
Saved Bookmarks
| 1. |
What Is The Difference Between Interface And Abstract Class? |
|
Answer» Abstract class defined with methods. Interface will declare only the methods. Abstract CLASSES are very much USEFUL when there is a some functionality across various classes. Interfaces are well suited for the classes which varies in functionality but with the same method SIGNATURES. Abstract class defined with methods. Interface will declare only the methods. Abstract classes are very much useful when there is a some functionality across various classes. Interfaces are well suited for the classes which varies in functionality but with the same method signatures. |
|