What is the use of 'abstract override' in C#?

C#OverridingAbstract

C# Problem Overview


Just out of curiosity I tried overriding a abstract method in base class, and method the implementation abstract. As below:

public abstract class FirstAbstract
{
    public abstract void SomeMethod();
}

public abstract class SecondAbstract : FirstAbstract
{
    public abstract override void SomeMethod();
    //?? what sense does this make? no implementaion would anyway force the derived classes to implement abstract method?
}

Curious to know why C# compiler allows writing 'abstract override'. Isn't it redundant? Should be a compile time error to do something like this. Does it serve to some use-case?

Thanks for your interest.

C# Solutions


Solution 1 - C#

There's a useful example for this on Microsoft Docs - basically you can force a derived class to provide a new implementation for a method.

public class D
{
    public virtual void DoWork(int i)
    {
        // Original implementation.
    }
}

public abstract class E : D
{
    public abstract override void DoWork(int i);
}

public class F : E
{
    public override void DoWork(int i)
    {
        // New implementation.
    }
}

> If a virtual method is declared abstract, it is still virtual to any > class inheriting from the abstract class. A class inheriting an > abstract method cannot access the original implementation of the > method—in the previous example, DoWork on class F cannot call DoWork > on class D. In this way, an abstract class can force derived classes > to provide new method implementations for virtual methods.

Solution 2 - C#

I find it really useful for ensuring proper ToString() implementation in derived classes. Let's say you have abstract base class, and you really want all derived classes to define meanigful ToString() implementation because you are actively using it. You can do it very elegantly with abstract override:

public abstract class Base
{
    public abstract override string ToString();
}

It is a clear signal to implementers that ToString() will be used in base class in some way (like writing output to user). Normally, they would not think about defining this override.

Solution 3 - C#

Interestingly enough, the Roslyn version of the C# compiler has an abstract override method in it, which I found odd enough to write an article about:

http://ericlippert.com/2011/02/07/strange-but-legal/

Solution 4 - C#

Imagine that SecondAbstract is in the middle of a three-class hierarchy, and it wants to implement some abstract methods from its base FirstAbstract while leaving some other method X to be implemented from its child ThirdAbstract.

In this case, SecondAbstract is forced to decorate the method X with abstract since it does not want to provide an implementation; at the same time, it is forced to decorate it with override since it is not defining a new method X, but wants to move the responsibility of implementing X to its child. Hence, abstract override.

In general, the concepts modelled by abstract and override are orthogonal. The first forces derived classes to implement a method, while the second recognizes that a method is the same as specified on a base class and not a new one.

Therefore:

  • neither keyword: "simple" method
  • abstract only: derived class must implement
  • override only: implementation of method defined in base class
  • abstract override: derived class must implement a method defined in base class

Solution 5 - C#

This is done because in child class you can not have abstract method with same name as in base class. override tells compiler that you are overriding the behavior of base class.

Hope this is what you are looking for.

Solution 6 - C#

If you did not declare SomeMethod as abstract override in SecondAbstract, the compiler would expect that class to contain an implementation of the method. With abstract override it is clear that the implementation should be in a class derived from SecondAbstract and not in SecondAbstract itself.

Hope this helps...

Solution 7 - C#

This design pattern is known as the Template Method pattern.

Wikipedia page on Template Methods

A simple, non-software example: There are a bunch of military units: tanks, jets, soldiers, battleships, etc. They all need to implement some common methods but they will implement them very differently:

  • Move()
  • Attack()
  • Retreat()
  • Rest()

etc...

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionManish BasantaniView Question on Stackoverflow
Solution 1 - C#BrokenGlassView Answer on Stackoverflow
Solution 2 - C#ghordView Answer on Stackoverflow
Solution 3 - C#Eric LippertView Answer on Stackoverflow
Solution 4 - C#JonView Answer on Stackoverflow
Solution 5 - C#Amar PalsapureView Answer on Stackoverflow
Solution 6 - C#FrancoisView Answer on Stackoverflow
Solution 7 - C#noctonuraView Answer on Stackoverflow