Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Overriding and Inheritance in C#

Ok, bear with me guys and girls as I'm learning. Here's my question.

I can't figure out why I can't override a method from a parent class. Here's the code from the base class (yes, I pilfered the java code from an OOP book and am trying to rewrite it in C#).

using System;  public class MoodyObject {     protected String getMood()     {         return "moody";     }      public void queryMood()     {         Console.WriteLine("I feel " + getMood() + " today!");     } } 

and here are my other 2 objects that inherit the base class (MoodyObject):

using System; using System.Collections.Generic; using System.Linq; using System.Text;  namespace ConsoleApplication1 {     public class SadObject: MoodyObject     {         protected String getMood()         {             return "sad";         }          //specialization         public void cry()         {             Console.WriteLine("wah...boohoo");         }     } } 

And:

using System; using System.Collections.Generic; using System.Linq; using System.Text;  namespace ConsoleApplication1 {     public class HappyObject: MoodyObject     {         protected String getMood()         {             return "happy";         }          public void laugh()         {             Console.WriteLine("hehehehehehe.");         }     } } 

and here is my main:

using System; using System.Collections.Generic; using System.Linq; using System.Text;  namespace ConsoleApplication1 {     class Program     {         static void Main(string[] args)         {             MoodyObject moodyObject = new MoodyObject();             SadObject sadObject = new SadObject();             HappyObject happyObject = new HappyObject();              Console.WriteLine("How does the moody object feel today?");             moodyObject.queryMood();             Console.WriteLine("");             Console.WriteLine("How does the sad object feel today?");             sadObject.queryMood();             sadObject.cry();             Console.WriteLine("");             Console.WriteLine("How does the happy object feel today?");             happyObject.queryMood();             happyObject.laugh();         }     } } 

As you can see, pretty basic stuff, but here's the output:

How does the moody object feel today? I feel moody today!

How does the sad object feel today? I feel moody today! wah...boohoo

How does the happy object feel today? I feel moody today! hehehehehehe. Press any key to continue . . .

Not as I expected. I've tried to make the base method virtual and calling override when trying to override it and that just gets me this error "cannot override inherited member 'MoodyObject.getMood()' because it is not marked virtual, abstract, or override". I also tried it without the virtual and override and it thinks I'm trying to hide the base method. Again, I'm new to OOP and would appreciate any guidance.

EDITED TO ADD: I found it! The MoodyObject.cs was only a "solution item" in the solution explorer as opposed to a "ConsoleApplication1" item. I dragged it down to where it belonged in the solution explorer and voila! It works now. I marked Luc's answer below as the answer because he offered the help I needed to get to where I have it resolved... I'm learning so much here. It's amazing and you guys and girls are crazy smart!

like image 816
GregD Avatar asked Dec 03 '08 15:12

GregD


People also ask

What is overriding in C?

When the base class and derived class have member functions with exactly the same name, same return-type, and same arguments list, then it is said to be function overriding.

How do you override an inherited function?

The derived classes inherit features of the base class. Suppose, the same function is defined in both the derived class and the based class. Now if we call this function using the object of the derived class, the function of the derived class is executed. This is known as function overriding in C++.

Is there function overriding in C?

c is compiled without override.


2 Answers

In C# methods are not virtual by default, so if you design some method as overridable, you should specify it as virtual:

class Base  {   protected virtual string GetMood() {...} } 

Second, you have to specify that you are going to override method from base class in derived class.

class Derived : Base {   protected override string GetMood() {...} } 

If you don't specify "override" keyword, you will get method that hides base type (and warning from compiler to put "new" keyword for the method to explicitly state so).

If you want to stop inheritance chain and disallow further overrides of the method, you should mark method as sealed, like this:

  protected sealed override string GetMood() {...} 
like image 187
Ilya Ryzhenkov Avatar answered Oct 14 '22 16:10

Ilya Ryzhenkov


You need to use the override keyword to override any virtual or implement any abstract methods.

public class MoodyObject {     protected virtual String getMood()      {          return "moody";      }         public void queryMood()      {          Console.WriteLine("I feel " + getMood() + " today!");      } }  public class HappyObject : MoodyObject {     protected override string getMood()     {         return "happy";     } } 

What I would recommend here is that you probally meant for MoodyObject to be an abstract class. (You'd have to change your main method if you do this but you should explore it) Does it really make sense to be in a moody mode? The problem with what we have above is that your HappyObject is not required to provide an implementation for getMood.By making a class abstract it does several things:

  1. You cannot new up an instance of an abstract class. You have to use a child class.
  2. You can force derived children to implement certain methods.

So to do this you end up:

public abstract class MoodyObject {     protected abstract String getMood();      public void queryMood()      {          Console.WriteLine("I feel " + getMood() + " today!");      } } 

Note how you no longer provide an implementation for getMood.

like image 23
JoshBerke Avatar answered Oct 14 '22 16:10

JoshBerke