show/hide this revision's text 4 edited body

To make PW and PR usable via a P you need to use references (or pointers). So you really need t change the interface of C so it returns a reference.

The main problem in the old code was that you were copying a P into a PW or a PR. This is not going to work as the PW and PR potentially have more information than a P and from a type perspective an object of type P is not a PW or a PR. Though PW and PR are both P.

Change the code to this and it will compile: If you want to return different objects derived from a P class at runtime then the class C must potentially be able to store all the different types you expect and be specialised specialized at runtime. So in the class below I allow you to specialise specialize by passing in a pointer to an object that will be returned by reference. To make sure the object is exception safe I have wrapped the pointer in a smart pointer.

class C
{
    public:
        C(std::auto_ptr<P> x):
            p(x)
        {
            if (p.get() == NULL) {throw BadInit;}
        }
        // Return a reference.
        P& GetP() const { return *p; }        
    private:
        // I use auto_ptr just as an example
        // there are many different valid ways to do this.
        // Once the object is correctly initialized p is always valid.
        std::auto_ptr<P> p;
};

// ...
P&  p = c.GetP( );                   // valid
PW& p = dynamic_cast<PW>(c.GetP( )); // valid  Throws exception if not PW
PR& p = dynamic_cast<PR>(c.GetP( )); // valid  Thorws exception if not PR
// ...
show/hide this revision's text 3 added 498 characters in body

To make PW and PR usable via a P you need to use references (or pointers). So you really need t change the interface of C so it returns a reference.

The main problem in the old code was that you were copying a P into a PW or a PR. This is not going to work as the PW and PR potentially have more information than a P and from a type perspective an object of type P is not a PW or a PR. Though PW and PR are both P.

Change the code to this and it will compile: If you want to return different objects derived from a P class at runtime then the class C must potentially be able to store all the different types you expect and be specialised at runtime. So in the class below I allow you to specialise by passing in a pointer to an object that will be returned by reference. To make sure the object is exception safe I have wrapped the pointer in a smart pointer.

class C
{
    public:
        C(std::auto_ptr<P> x):
            p(x)
        {
            if (p.get() == NULL) {throw BadInit;}
        }
        // Return a reference.
        P& GetP() const { return *p; }        
    private:
        // I use auto_ptr just as an example
        // there are many different valid ways to do this.
        // Once the object is correctly initialized p is always valid.
        std::auto_ptr<P> p;
};

// ...
P&  p = c.GetP( );                   // valid
PW& p = dynamic_cast<PW>(c.GetP( )); // valid  Throws exception if not PW
PR& p = dynamic_cast<PR>(c.GetP( )); // valid  Thorws exception if not PR
// ...
show/hide this revision's text 2 added 117 characters in body

To make PW and PR usable via a P you need to use references (or pointers). So you really need t change the interface of C so it returns a reference.

The main problem in the old code was that you were copying a P into a PW or a PR. This is not going to work as the PW and PR potentially have more information than a P.

Change the code to this and it will compile:

class C
{
    public:
        C(std::auto_ptr<P> x):
            p(x)
        {
            if (p.get() == NULL) {throw BadInit;}
        }
        // Return a reference.
        P& GetP() const { return *p; }        
    private:
        // I use auto_ptr just as an example
        // there are many different valid ways to do this.
        // Once the object is correctly initialized p is always valid.
        std::auto_ptr<P> p;
};

// ...
P&  p = c.GetP( );                   // valid
PW& p = dynamic_cast<PW>(c.GetP( )); // valid  Throws exception if not PW
PR& p = dynamic_cast<PR>(c.GetP( )); // valid  Thorws exception if not PR
// ...

The main problem in the old code was that you were copying a P into a PW or a PR. This is not going to work as the PW and PR have more information than a P.

show/hide this revision's text 1