I'm struggling a bit to understand why this code snippet does not compile.
#include <cstdio>
class A {
public:
virtual int potential()=0;
virtual int potential(int arg, int arg2)=0;
};
class B : public A {
public:
int potential() { return 1; }
virtual int potential(int arg, int arg2) { return 2; }
};
class C : public B {
public:
int potential(int arg, int arg2) { return 3; }
};
int main(int argc, char** argv) {
C c;
int value = c.potential();
printf("Got %i\n", value);
return 0;
}
I have two pure virtual methods, both named potential in the abstract superclass A. The subclass B then defines both, but a further subclass C only needs to redefine one of the methods.
However, on compilation, only the method defined in C is recognized, and potential() isn't seen (this should have been inherited from B):
In function 'int main(int, char**)':
Line 23: error: no matching function for call to 'C::potential()'
compilation terminated due to -Wfatal-errors.
If I rename A::potential(int, int) to something else all the way down the inheritance tree, such as A::somethingElse(int, int), then the code compiles fine, and the output is Got 1, as expected.
This has been verified using clang, g++ and MSVC's cl.
Any ideas on what is going on?
cstdioin C++ plzkthx. – Lightness Races in Orbit May 5 '11 at 11:27<cstdio>as suggested. – Dan May 5 '11 at 11:53