I'm about to desperate! I need to call a non-virtual member function from a pointer to my base class:
class A { };
class B : public A { public: void evilFunction() { std::cout << "Yay!"; } };
int main(void) {
A *pointer = new B();
// Now do something like this:
// pointer->evilFunction();
return 0;
}
I know I can do this with dynamic_cast - but I'm not allowed to! I really have no idea what else I can do. In theory, since I have the pointer, I'm pretty sure I can do some magic with pointer arithmetics to get the memory position of the function and then call it, but I don't know how to do this or at least how to start.
Any one who can give me a hint? That's all I need. Or I'm gonna use my epic beginner skills to write code to delete g++ in retaliation for the pain C++ is causing to me! You can't let that happen, right?!
When you know that the pointer really points to a
B
, then just use astatic_cast
.