Question { 15381 }
What is the diffrence between Abstract Class and an Interface
in OOABAP.
Answer
The main diff between is : interface is pure abstract class
means.. not even a single method got implemented.where as abstract class may contains implemented methods.
we cant create object for both.