Date and Time: 2023-10-17 01:31 Tags: CSharp, Object Oriented Programming, Abstraction, Inheritance
Abstract Class vs Interface
Abstract class
An abstract class is a way to achieve the abstraction in C#. To declare abstract class , we use abstract keyword. An Abstract class is never intended to be instantiated directly. This class must contain at least one abstract method, which is marked by the keyword or modifier abstract in the class definition. The Abstract classes are typically used to define a base class in the class hierarchy.
Output :
Class name is G1
Class name is G2
Interface
Like a class, Interface can have methods, properties, events, and indexers as its members. But interfaces will contain only the declaration of the members. The implementation of interface’s members will be given by the class who implements the interface implicitly or explicitly. (Info Depricated after C# 8.0 update)
Output:
Welcome to GeeksforGeeks!!!
Difference between Abstract Class and Interface
Abstract Class | Interface |
---|---|
It contains both declaration and definition part. | It contains only a declaration part. (Depricated after C# 8.0) |
Multiple Inheritance is not achieved by abstract class. | Multiple inheritance is achieved by interface. |
It contain constructor. | It does not contain constructor. |
It can contain static members. | It does not contain static members. |
It can contain different types of access modifiers like public, private, protected etc. | It only contains public access modifier because everything in the interface is public. |
The performance of an abstract class is fast. | The performance of interface is slow because it requires time to search actual method in the corresponding class. |
It is used to implement the core identity of class. | It is used to implement peripheral abilities of class. |
A class can only use one abstract class. | A class can use multiple interface. |
If many implementations are of the same kind and use common behavior, then it is superior to use abstract class. | If many implementations only share methods, then it is superior to use Interface. |
Abstract class can contain methods, fields, constants, etc. | Interface can only contains methods, properties, indexers, events. |
The keyword “extends” can be used for implementing the Abstract class. | The keyword “implements” can be used for implementing the Interface. |
It can be fully, partially or not implemented. | It should be fully implemented. |
To declare abstract class , we use abstract keyword. | To declare interface, we use interface keyword. |