Possible Duplicate:
A question about virtual mechanism in C++
Every time a question comes up about C++ and virtual function implementation, it's necessary to add a disclaimer that the C++ standard doesn't mandate that they be implemented with a class-wide static vtable and a pointer to the vtable. This is such a natural and fast method that I've never heard of it being done any other way, making the disclaimer somewhat pedantic.
Is there an example of a C++ compiler that uses another method to do virtual functions?