ASP Programming Question:
Whats the difference between an interface and abstract class?
Answer:
In the interface all methods must be abstract, in the abstract class some methods can be concrete. In the interface no accessibility modifiers are allowed, which is ok in abstract classes.
Previous Question | Next Question |
And if they have conflicting method names? | How can you overload a method? |