+ 5
What's the difference between a class and interface?
3 Antworten
+ 16
An interface does not have instance fields (data), so you cannot make any "object" from it...
An interface is the blueprint for the methods that can be reused in many classes...
^-^
+ 12
An interface only contains abstract methods.