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)