vote up 0 vote down star

Why, for example, is there no language support to examine a vtable? Why can't I replace a member function with a new one? I have a gut feeling that there are ways to put such features to good use.

Are there any other languages out there which allow me to do such things?

flag

50% accept rate
2  
I’m pretty sure that messing around with the vtable will not make code more readable/secure/reliable. – Bombe Sep 12 at 18:42
If there was language support for this, I would not consider it "messing around". It would be a clearly understood and widely used programming practice. – Agnel Kurian Sep 12 at 18:52
Yeah, but there is not, so... – Ed Swangren Sep 12 at 22:12
If the best justification you have for it is "a gut feeling", that's probably your answer. The C++ committee generally don't like adding something unless there are clear, concrete use cases for it. – jalf Sep 12 at 23:32

7 Answers

vote up 14 vote down

Because it is an implementation detail of the compiler. That implementation may change, and any code that relies on it would be fragile at best.

link|flag
vote up 6 vote down

C++ is a language where you never 'pay for' what you don't use. This kind of runtime support would run contrary to that philosophy.

There are plenty of languages (on the more dynamic end of the spectrum) that support that.

link|flag
Could you please name some languages that support this. Voice in my head says JavaScript and Python... but not sure really. – Agnel Kurian Sep 12 at 18:34
I don't know specifically whether it's supported by JavaScript or Python, but it is most definitely supported by Ruby. – Mikael Auno Sep 12 at 18:40
For a really powerful object system look up 'CLOS' and 'MOP'. – gimpf Sep 12 at 19:09
Javascript, Python, Ruby, Lisp — you can pretty much pick any dynamic language and it will have it. – Chuck Sep 12 at 19:16
vote up 6 vote down

Because it doesn't have to be implemented as a VTable, although this is usually the case. In short, there is no such thing as VTable in C++!

link|flag
vote up 3 vote down

JavaScript, Python, and Ruby can all do this. In those languages, class and instance definitions are mutable at runtime. Abstractly, each object and type is a dictionary of member variables and methods that can be examined and updated.

This isn't possible in C++ because it would require being able to rewrite generated binary code, which can carry a substantial performance cost.

link|flag
vote up 2 vote down

I believe you can do things like that in dynamic languages like Python:

>>> class X():
...     def bar(self): print "bar"
...     
>>> x = X()
>>> x.bar()
bar
>>> def foo(x): print "foo"
... 
>>> X.bar = foo
>>> x.bar()
foo

The difference with a static language like C++ is that the interpreter looks up all names at runtime and then decides what to do.

In C++ there are likely other solutions to the "replace a member function with another" problem, the simplest of which might be using function pointers:

#include <iostream>

class X;
typedef void (*foo_func)(const X&);

void foo(const X&) { std::cout << "foo\n"; }
void bar(const X&) { std::cout << "bar\n"; }

class X
{
    foo_func f;
public:
    X(): f(foo) {}
    void foobar() { f(*this); }
    void switch_function(foo_func new_foo) { f = new_foo; }
};

int main()
{
    X x;
    x.foobar();
    x.switch_function(bar);
    x.foobar();
}

(foo and bar don't use the X& argument, in this example, similar to the Python example)

link|flag
vote up 1 vote down

I am working on a statically compiled language that exposes the vtable, and believe me it is quite a bit of hair to expose.

link|flag
vote up 1 vote down

Vtables only exist in certain circumstances in some compilers (i.e. they are not specified in the standard but an implementation detail). Even when they do exist, they only occur when you have virtual functions and need the indirection to implement polymorphism. When this is not required they can be optimised out, saving the overhead of the indirection on the call.

Sadly (or otherwise, depending on your views on the matter ;-), C++ was not designed to support monkey patching. In some cases (e.g. COM) the vtable is a part of the implementation and you might be able to poke about behind the scenes. However, this would never be supported or portable.

link|flag

Your Answer

Get an OpenID
or

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