vote up 9 vote down star
1

In C#, is it possible to mark an overridden virtual method as final so implementers cannot override it? How would I do it?

An example may make it easier to understand:

class A
{
   abstract void DoAction();
}
class B : A
{
   override void DoAction()
   {
       // Implements action in a way that it doesn't make
       // sense for children to override, e.g. by setting private state
       // later operations depend on  
   }
}
class C: B
{
   // This would be a bug
   override void DoAction() { }
}

Is there a way to modify B in order to prevent other children C from overriding DoAction, either at compile-time or runtime?

flag

80% accept rate

4 Answers

vote up 22 vote down check

Yes, with "sealed":

class A
{
   abstract void DoAction();
}
class B : A
{
   sealed override void DoAction()
   {
       // Implements action in a way that it doesn't make
       // sense for children to override, e.g. by setting private state
       // later operations depend on  
   }
}
class C: B
{
   override void DoAction() { } // will not compile
}
link|flag
Great, I didn't know of that language feature :) – dbkk Apr 28 at 12:49
vote up 4 vote down

You need "sealed".

link|flag
vote up 2 vote down

You can mark the method as sealed.

http://msdn.microsoft.com/en-us/library/aa645769(VS.71).aspx

link|flag
you can make individual methods sealed in fact – annakata Apr 28 at 12:08
why would you mark the class as sealed ? You can specify this modifier at the method level as well ... – Frederik Gheysels Apr 28 at 12:09
Interesting I've never known you could seal methods however I've never had a reason to. – Chris Marisic Jul 7 at 12:56
vote up 2 vote down

Individual methods can be marked as sealed, which is broadly equivalent to marking a method as final in java. So in your example you would have:

class B : A
{
  override sealed void DoAction()
  {
    // implementation
  }
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.