What is the difference between interface and abstract class?
Sigiloso
Abstract class can have abstract and non-abstract methods. Interface can have only abstract methods. Abstract class doesn't support multiple inheritance.Interface supports multiple inheritance.