Differentiate between Abstract Class and Interface.
Answers
Answered by
0
Main difference is methods of a Java interface are implicitly abstract and cannot have implementations. A Java abstract class can have instance methods that implements a default behavior. ... An abstract class may contain non-final variables. Members of a Java interface are public by default.
Similar questions