vote up 4 vote down star
1

I've been doing some mocking with RhinoMocks and it requires that mocked methods be made virtual. This is fine except we have a custom framework which contains the methods that I want to mock which are currently not marked as virtual.

I can't forsee any problem with making these methods virtual but I was wondering what are some potential dangers of making methods virtual that I should look out for?

flag

I've never used Rhino, so I'm curious as to why it requires this. Anyone care to explain? – Esteban Araya Sep 26 '08 at 1:32
I'm assuming Rhino overrides the methods in order to mock the interface by using the same type but mock behavior. – Mark Cidade Sep 26 '08 at 1:33

5 Answers

vote up 6 vote down check

Actually it can be very problematic if the method is not designed to be overridden and someone overrides it. In particular, never call a virtual method from a constructor. Consider:

class Base {
    public Base() {
       InitializeComponent();
    }
    protected virtual void InitializeComponent() {
        ...
    }
}

class Derived : Base {
    private Button button1;
    public Derived() : base() {
        button1 = new Button();
    }
    protected override void InitializeComponent() {
        button1.Text = "I'm gonna throw a null reference exception"
    }
}

The Derived class may not be aware that the virtual method call will result in its InitializeComponent method being called before a single line of its own constructor has run.

link|flag
vote up 0 vote down

Its not really a danger but in C# making a method virtual will have some impact on performance. For example, the compiler may not be able to inline a virtual method since it may be overridden in a subclass.

I think what John said about C++ may also apply. I.e. virtual methods have to go through an extra lookup step.

As a comparison in Java all methods are 'virtual' (non final) by default and I can't think of any issues caused by that.


Just to clarify: with all .net method calls there is a lookup. The object reference points to an object header in memory which contains type info. Then the type info and the method info is used to get an entry in the virtual dispatch table which points to real code.

However, with virtual methods you also have to check what type the caller is cast as and then work out which method to call (base class or overridden class(es)). It is a bit more costly again for an interface because you have to also look up the implementing type before starting the method resolution within the type.

With a non-virtual method the runtime will know up front that there is no possibility of subclasses overriding that method and an optimization can be made. The same is true for sealed classes.

link|flag
actually... I was just reading the blog post kev linked and it says: before you do a search replace to remove all virtuals from your code, take into account that in C#, all method calls are virtual method calls, even if the method is not virtual. – lomaxx Sep 26 '08 at 1:47
vote up 1 vote down

Virtual methods can be potentially dangerous (or in best case cause strange behaviour) if you call them during the destruction of an inherited object.

Let's say you have the following classes:

class foo {
public:
   foo();
   ~foo() { Cleanup() };
   virtual void Cleanup();
}

class bar : public foo {
public:
   bar()
      :foo() {};
   ~bar();
   virtual void Cleanup()
   {
      foo::Cleanup();

      // Do some special bar() related cleanup now...
   }
}

Let's say you create an object of type bar(), which is actually a foo() based on the inheritance hierarchy. When you delete the bar() object, the bar() destructor gets invoked first, followed by the foo() destructor. In an attempt to minimise calls to the Cleanup() routine, the call to this has been put in the foo() destructor. However, when this is called, the bar() object has already been destroyed, which means foo::Cleanup() won't exist in the vtable, and it will call the bar::Cleanup() method instead.

This could result in strange behaviour, like memory leaks, or inconsistent system state which could be a ticking time bomb waiting to cause problems further down the line.

I have been bitten by this sort of strange behaviour in the past, so it's certainly something to look out for.

link|flag
No, C++ guarantees non-virtual behaviour in the constructor and destructor. The compiler should have disallowed you to call Cleanup() in foo's destructor, because it's not implemented in class foo, and it's not a virtual call. – Chris Jester-Young Sep 27 '08 at 5:43
For indirect calls to Cleanup() in the dtor (e.g., dtor calls a non-virtual function that then calls virtual Cleanup()), then you should get a "pure virtual call" error. (Mind you, the behaviour is undefined at this stage, but Visual C++ will advise you of a pure virtual call at runtime.) – Chris Jester-Young Sep 27 '08 at 5:45
vote up 2 vote down

Ayende has a nice treatment of how virtual methods work:

http://ayende.com/Blog/archive/2007/01/05/HowVirtualMethodsWork.aspx

link|flag
vote up 3 vote down
  • If you have users that override your virtual methods you can't seal them again without breaking code.
  • Any virtual methods you call from the constructor may fall down to derived implementations and if they don't call the base method and the constructor depends on it, the object may be in an invalid state
link|flag

Your Answer

Get an OpenID
or

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