vote up 5 vote down star

In the code below I tried in two ways to access the parent version of methodTwo, but the result was always 2. Is there any way to get the 1 result from a ChildClass instance without modifying these two classes?

class ParentClass
{
    public int methodOne()
    {
        return methodTwo();
    }

    virtual public int methodTwo()
    {
        return 1;
    }
}

class ChildClass : ParentClass
{
    override public int methodTwo()
    {
        return 2;
    }
}

class Program
{
    static void Main(string[] args)
    {
        var a = new ChildClass();
        Console.WriteLine("a.methodOne(): " + a.methodOne());
        Console.WriteLine("a.methodTwo(): " + a.methodTwo());
        Console.WriteLine("((ParentClass)a).methodTwo(): "
		 + ((ParentClass)a).methodTwo());
        Console.ReadLine();
    }
}

Update ChrisW posted this:

From outside the class, I don't know any easy way; but, perhaps, I don't know what happens if you try reflection: use the Type.GetMethod method to find the MethodInfo associated with the method in the ParentClass, and then call MethodInfo.Invoke

That answer was deleted. I'm wondering if that hack could work, just for curiosity.

flag

4 Answers

vote up 10 vote down check

At the IL level, you could probably issue a call rather than a callvirt, and get the job done - but if we limit ourselves to C# ;-p (edit darn! the runtime stops you: VerificationException: "Operation could destabilize the runtime."; remove the virtual and it works fine; too clever by half...)

Inside the ChildClass type, you can use base.methodTwo() - however, this is not possible externally. Nor can you go down more than one level - there is no base.base.Foo() support.

However, if you disable polymorphism using method-hiding, you can get the answer you want, but for bad reasons:

class ChildClass : ParentClass
{
    new public int methodTwo() // bad, do not do
    {
        return 2;
    }
}

Now you can get a different answer from the same object depending on whether the variable is defined as a ChildClass or a ParentClass.

link|flag
+1 for the clever hack – Andrew Hare Jan 13 at 14:18
nice hack! = upvoted nice answer ("this is not possible externally.") = chosen – Jader Dias Jan 13 at 15:31
vote up 17 vote down

Inside of ChildClass.methodTwo(), you can call base.methodTwo().

Outside of the class, calling ((ParentClass)a).methodTwo()) will call ChildClass.methodTwo. That's the entire reason why virtual methods exist.

link|flag
1  
+1 polymorphism in all its glory – Andrew Hare Jan 13 at 13:39
.., and -1 for all the ways it gets overused/misused. – Michael Meadows Jan 13 at 13:45
Michael - you downvoted someones explanation of polymorphic behavior? Craig was simply explaining why things work the way that they do, don't flail about downvoting good answers simply because they explain a concept you happen to believe is overused. – Andrew Hare Jan 13 at 14:17
I'm guessing he was joking. :) – Craig Stuntz Jan 13 at 14:37
didn't downvote. just wanted to throw in my -1 cent on the overuse of polymorphism. Sorry if that wasn't clear. – Michael Meadows Jan 14 at 13:47
vote up 0 vote down

To my knowledge, once a method has been overridden then you can't call the parent method.

link|flag
This is not a bad answer - I think he meant you can't call the overriden parent method from an instance of the child, which was the spirit of the question. – Andrew Hare Jan 13 at 13:38
vote up 0 vote down

I would think that it is not possible unless you make instance of the ParentClass directly. Thats the very essense of inheritance, polymorphism...

link|flag

Your Answer

Get an OpenID
or

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