[comp.lang.c++] Can't inherit abstract classes -> pain and suffering

benson@odi.com (Benson I. Margulies) (08/21/89)

The enclosed test case fails to compile, complaining 
"can't inherit pure virtual function."

I don't see the problem. base's pure function declaration for pred
states that all bases must have a non-pure implementation of pred.
top and top0 certainly do have such an implementation, taken from mix
and mix0.

Why do I want to do this? In the real code, from which this is
abstracted, base has a constructor. top and top0 have constructors
that pass arguments along to base. Its painful to have to include mix
and mix0 into the constructor picture just to resolve this.  The same
sort of thing happens if I put an implementation of pred into base,
junk mix0, and only derive from mix when I want the copy of pred that
returns 1. This time I get a complaint about ambiguity.  If it weren't
for having to leave a trail of constructor arguments all over the
place, I wouldn't mind this so much. I don't think that it is very
good modularity to have to derive mix from base and them top from mix,
and then pass constructor arguments through mix just to get them to
base. I see that I can use virtual base classes to include base in mix
and also in top, and thus pass the constructor arguments straight to
base. It seems like a lot of complexity for a pretty simple task.

class base {
  public:
    int s;
    virtual int pred () = 0;
};

class mix {
  public:
    virtual int pred () {
	return 1;
    };
};

class mix0 {
  public:
    virtual int pred () {
	return 0;
    };
};

class top : public base, public mix {
};

class top0 : public base, public mix0 {
};

int Q;

main ()
{
    top t;
    Q = t.pred();
}

jima@hplsla.HP.COM (Jim Adcock) (08/22/89)

// try:

class base {
  public:
    int s;
    virtual int pred () = 0;
};

class mix {
  public:
    virtual int pred () {
	return 1;
    };
};

class mix0 {
  public:
    virtual int pred () {
	return 0;
    };
};

class top : public base, public mix 
{
  public:
    virtual int pred () {
	return (mix::pred());
    };
};

class top0 : public base, public mix0 {
  public:
    virtual int pred () {
	return (mix0::pred());
    };
};

int Q;

main ()
{
    top t;
    Q = t.pred();
}

// or try:

class base {
  public:
    int s;
    virtual int pred () = 0;
};

class mix {
  public:
    virtual int pred () {
	return 1;
    };
};

class mix0 {
  public:
    virtual int pred () {
	return 0;
    };
};

class top : public base, public mix 
{
  public:
    virtual int pred () {
	return ((mix*)(this))->pred();
    };
};

class top0 : public base, public mix0 {
  public:
    virtual int pred () {
	return ((mix0*)(this))->pred();
    };
};

int Q;

main ()
{
    top t;
    Q = t.pred();
}