Interface Re-implementation in C#

Introduction

Did you know that in C#, a class can re-implement an interface? Yes, it is true. Re-implementation occurs when a method declared in an interface is implemented in a class using a virtual keyword, and this virtual method is then overridden in the derived class.

Let us take a look at a program that demonstrates the re-implementation of an interface.

using System;

interface IArithmetic
{
    void Area();
}

class Circle : IArithmetic
{
    public const float PI = 3.14F;
    protected float Radius;
    protected double AreaOfCircle;

    public virtual void Area()
    {
        AreaOfCircle = (PI * Radius * Radius);
    }
}

class Sphere : Circle
{
    double _areaOfSphere;

    public override void Area()
    {
        base.Area();
        _areaOfSphere = (AreaOfCircle * 4);
    }

    static void Main(string[] args)
    {
        Sphere objSphere = new Sphere();
        objSphere.Radius = 7;
        objSphere.Area();
        Console.WriteLine("Area of Sphere: {0:F2}", objSphere._areaOfSphere);
    }
}

Output

Output

In this code, the interface IArithmetic declares the method Area(). The class Circle implements the interface IArithmetic. The class Circle declares a virtual method Area() that calculates the area of a circle. The class Sphere inherits the class Circle and overrides the base class method Area() to calculate the area of the sphere. The base keyword calls the base class method Area(), thereby allowing the use of base class methods in the derived class.

Re-implementation of an interface in C# can be useful in several scenarios.

Essentially, it allows you to provide multiple implementations of an interface within the same class, which can be beneficial for various reasons.

  1. Multiple Interface Implementations: If a class needs to implement multiple interfaces that share method names, re-implementing the interface methods explicitly can help differentiate between the implementations. This is useful when the same class implements multiple interfaces with methods that have the same names but different functionalities.
  2. Avoiding Naming Conflicts: If a class implements an interface but needs to provide a specialized implementation for certain scenarios, you can use explicit interface implementation to avoid naming conflicts. This allows different parts of your codebase to interact with the class through the appropriate interface.
  3. Decoupling and Flexibility: Explicit interface implementation provides a way to decouple your class from its interface implementations. This can be particularly useful in situations where you want to provide multiple behaviors through the same class without exposing them directly in the class's public interface.
  4. Enhancing Security and Encapsulation: By using explicit interface implementations, you can limit the visibility of certain methods, making them accessible only through the interface they are explicitly implemented from. This is a way to encapsulate functionality and ensure that only specific parts of your codebase can access these methods.
  5. Interfacing with Legacy Code: If you're working with legacy code or third-party libraries, you might encounter interfaces that have method names that conflict with those in your classes. Explicitly implementing these interfaces can help manage such conflicts and allow for smooth integration.

Conclusion

Re-implementing an interface explicitly can be a powerful tool in C# for managing complex scenarios involving multiple interfaces, avoiding conflicts, and maintaining clean and encapsulated code.


Similar Articles