+ 1
Difference between Interface and an abstract classe??
Top 2 differences
3 Answers
+ 4
1.
In abstract class if we define any variable or method than we mark abstract in there declaration
But In the interface is internally abstract declared .
2 .
Abstract class can extends another java class and implements multiple interface
But Interface only implements interface
- 1
Abstract clases can implement method and can be overridden, interface - can't. + Hello_World info