vote up 1 vote down star

I'm using a library that generates a bunch of classes for me.

These classes all inherit from a common base class but that base class doesn't define a couple methods that are common to all subclasses.

For example:

SubClassA : BaseClass{
  void Add(ItemA item) {...}
  ItemA CreateNewItem() {...}
}

SubClassB: BaseClass{
  void Add(ItemB item) {...}
  ItemB CreateNewItem() {...}
}

Unfortunately, the base class doesn't have these methods. This would be great:

BaseClass{
  // these aren't actually here, I'm just showing what's missing:
  abstract void Add(ItemBaseClass item);  // not present!
  abstract ItemBaseClass CreateNewItem(); // not present!
}

Since there is a common base class for my A+B objects and a common base class for the Item objects, I had hoped to benefit from the wonderful world of polymorphism.

Unfortunately, since the common methods aren't actually present in the base class, I can't call them virtually. e.g., this would be perfect:

BaseClass Obj;
Obj = GetWorkUnit(); // could be SubClassA or SubClassB

ItemBaseClass Item = Obj.CreateNewItem(); // Compile Fail: CreateNewItem() isn't in the base class

Item.DoSomething();

Obj.Add(Item); // Compile Fail: Add(...) isn't in the base class

Obviously casting would work but then I'd need to know which type I had which would negate the benefits.

How can I "force" a call to these methods? I'm not worried about getting an object that doesn't implement the method I'm trying to call. I can actually do what I want in VB--I don't get intellisense but the compiler's happy and it works:

CType(Obj, Object).Add(Item) // Note: I'm using C#--NOT VB

Againt, I have no control over these classes (which I think rules out partial classes).

flag

What's wrong with your own method then? Only use mine if you have Option Strict On – Mehrdad Afshari Apr 16 at 18:20
Do you have control over the subclass? If you do, go with Lucero's solution. – Mehrdad Afshari Apr 16 at 18:25
1  
@Michael Haren: C# doesn't have Option Strict at all. My solution works if you have no control over the classes, Lucero's solution is best if you have control over subclasses. – Mehrdad Afshari Apr 16 at 18:25

7 Answers

vote up 2 vote down check

You cannot call a non-virtual method of a derived class without resorting to reflection or other dirty tricks. If you want to do it, it's easy then:

// obj is your object reference.
obj.GetType().InvokeMember("MethodName", 
    System.Reflection.BindingFlags.InvokeMethod, null, obj, null /* args */)
link|flag
1  
I'm willing to use dirty tricks! It can't be that crazy if VB happily accepts it...well ok, it can be, but I'd like to see... – Michael Haren Apr 16 at 18:16
Why is reflection dirty trick ? :) Its quite common nowdays and u can even make it perform equaly to code without reflection – majkinetor Apr 16 at 18:16
It's considered a dirty trick when you gotta use polymorphism. – Mehrdad Afshari Apr 16 at 18:17
@Micheal Haren: I converted it to VB for you. The last parameter will be the parameters passed to the method, if you need it. – Mehrdad Afshari Apr 16 at 18:18
Heh, I thought it. Let's convert back then ) – Mehrdad Afshari Apr 16 at 18:21
show 1 more comment
vote up 0 vote down

Problem #1: your subclasses aren't overriding anything Problem #2: your subclasses have different function signatures than your base class

Make sure your signatures are correct, and if you're overriding them, mark them virtual and not abstract. You'll have to add an empty body to the base class virtual functions if you don't want them to do anything.

class ItemBase{}

class ItemA : ItemBase{}

class ItemB : ItemBase{}

class BaseClass
{
    public virtual void Add(ItemBase item){}
    public virtual ItemBase CreateItem() { return null; }
}

class ClassA : BaseClass
{
    public override void Add(ItemBase item)
    {
        //do whatever
        throw new NotImplementedException();
    }

    public ItemBase CreateItem()
    {
        //create an ItemBase and return
        throw new NotImplementedException();
    }
}
link|flag
MStodd, thanks for the suggestion but unfortunately I don't have control over the classes. Additionally, those method calls aren't actually present in the base class, abstract or concrete. – Michael Haren Apr 16 at 18:45
vote up -1 vote down

You forgot the "override" keyword in your sub-classes' method definitions. When something's declared "abstract" it is by definition virtual, and thus in the sub-class you need to put the "override" keyword in front of the method declaration. So what should work is below:

BaseClass{
  abstract void Add(ItemBaseClass item);  // not present!
  abstract ItemBaseClass CreateNewItem(); // not present!
}

SubClassA : BaseClass{
  override void Add(ItemA item) {...}
  override ItemA CreateNewItem() {...}
}

SubClassB: BaseClass{
  override void Add(ItemB item) {...}
  override ItemB CreateNewItem() {...}
}

This should work exactly as you want in your usage example.

link|flag
@Kevin, thanks for the help but what I was trying to show is that I can't touch that code--I don't control it. the //no present lines are actually NOT in the code file--if they were there I'd be golden. – Michael Haren Apr 16 at 18:42
Ah, I see. So basically you're looking for interface-like behavior on things that don't declare a common interface. Kinda shoddy design if the things with common methods don't implement an interface. Too bad. – Kevin Apr 16 at 18:50
vote up 0 vote down

Another possibility is to use some proxy mechanism, such as a RealProxy (not very efficient in terms of performance though) or better by using dynamically created DynamicMethods so that the overhead of using reflection is only there once per type to support, while keeping it as flexible as the reflection method. This pays off big when you need to call the method several times, but it requires some MSIL knowledge.

link|flag
vote up 0 vote down

If you're using Visual Studio 2008 - you can create an extension method for the base class. Inside that extension method, you'd do the cast and call the subclass's method. This should work for 2.0 framework targeted projects as well, as long as you're compiling from withing VS 2008. Borrowing the other suggested reflection code, you could do the following...

public static class MyExtensions
{
   public static ItemBaseClass CreateNewItem(this BaseClass item)
   {
      return item.GetType().InvokeMember("MethodName", System.Reflection.BindingFlags.InvokeMethod, null, obj, null /* args */);
   }
}
link|flag
Can you show us some code samples? I doubt it's possible to do it cleanly. – Mehrdad Afshari Apr 16 at 18:28
That's a nice idea but the whole point is to eliminate big switch blocks like this. Thanks, though. – Michael Haren Apr 16 at 18:33
if you don't want the switch blocks - go with the reflection route. If performance is a concern, the switch block might be a better route. Having extension method lets you isolate that switch bock into an easily callable method. – Scott Ivey Apr 16 at 18:37
as a 2nd thought, why not make an extension method that does reflection? – Scott Ivey Apr 16 at 18:39
In general I couldn't say, but in this case it's because I'm not using VS2008. Thanks again. – Michael Haren Apr 16 at 18:40
show 1 more comment
vote up 2 vote down

I might be missing something, but why not make and inherit from an interface with those methods?

If you are in control of the creation process for the instances, you might get what you want by inheriting from the classes which you didn't write and add then interface (no code needs to be written, the compiler will map the interface to the existing non-virtual methods).

link|flag
He has no control over the classes. – Mehrdad Afshari Apr 16 at 18:24
Maybe I need to be more specific then... ;) – Lucero Apr 16 at 18:25
Right. This is what I started with but without control over the classes, I can't do it. – Michael Haren Apr 16 at 18:26
@Lucero: Maybe you are right. Your solution works even if you have control over subclasses. I'm not sure of it though. Leave it here, at least to help future visitors. – Mehrdad Afshari Apr 16 at 18:27
So I'd need to subclass each of the three classes (base, a, b) and add in an interface each time, e.g. MissingBaseMethods{ Add(); CreateNewItem();}; add a little NotImplemented code for the base, ignore A and B and then instantiate these new classes? – Michael Haren Apr 16 at 18:38
show 3 more comments
vote up 0 vote down

Declare them as virtual:

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

link|flag
Declare what as virtual? The methods aren't present in the base classes. – Michael Haren Apr 16 at 18:17
The base class methods need to be virtual, along with the "override" keyword in the sub-class implementations. See my answer below. – Kevin Apr 16 at 18:42
@Kevin: the methods aren't in the base class. I commented further on your answer. – Michael Haren Apr 16 at 18:43

Your Answer

Get an OpenID
or

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