Re: Class casting

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Interestingly enough, if you did this:

int main() {
        B b;
        C* c = new C(b);
}

It will compile and work as expected. The constructor wants an A, a B is
an A, so everything is fine.

Why one needs to declare the B first, rather than instantiating the
temporary as in the code below, I have no idea. Can anyone shed some
light on this?

Justin

On Wed, 2003-07-02 at 12:09, Greg Davey wrote:
...
> int main(){
>     C* c = new C(B()); 
>     c->doOtherStuff();
>     return 0;
> }
> 



[Index of Archives]     [Linux C Programming]     [Linux Kernel]     [eCos]     [Fedora Development]     [Fedora Announce]     [Autoconf]     [The DWARVES Debugging Tools]     [Yosemite Campsites]     [Yosemite News]     [Linux GCC]

  Powered by Linux