Difference between an interface and abstract class Some methods in the abstract class can be concrete whereas all methods in the interface are abstract. Difference between an interface and abstract class - 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 possible in abstract classes.
|