I seem to be unable to use a base class as a function parameter, have I messed up my inheritance?
I have the following in my main:
int some_ftn(Foo *f) { /* some code */ };
Bar b;
some_ftn(&b);
And the class Bar inheriting from Foo in such a way:
class Bar : Foo
{
public:
Bar();
//snip
private:
//snip
};
Should this not work? I don't seem to be able to make that call in my main function
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…