0
what's the exact differences between interface and abstract class ?
4 ответов
+ 3
Interfaces have complete abstract methods. Attributes within interfaces are both final and static by default. Intefaces must be implement in order to provide functionality to those behaviours.
Abstract classes may have abstract methods and non abstract methods. Abstract classes cannot be instantiated and one must inherit the abstract class in order to provide functionality to those abstract behaviours.
0
yaa but abstract class can be extended in another class
0
Which i did mention above. "Inherit".
0
yaa i didn't see that 👍