Statistics
The Highest Post







Statistics
Count 94
Avg 21.00
Min 21
Max 21
Angualr Top questions

Details



Peter Agyekum What is the difference between Interface and a class? A Class has both definition and an implementation whereas Interface only has a definition. A Class can be instantiated but an Interface cannot be instantiated You can create an instance of an Object that implements the Interface. A Class is a full body entity with members, methods along with there definition and implementation. An Interface is just a set of definition that you must implement in your Class inheriting that Interface.
Related Topics