copy constructor by address

Posted by anish on Stack Overflow See other posts from Stack Overflow or by anish
Published on 2010-03-22T11:28:51Z Indexed on 2010/03/22 11:31 UTC
Read the original article Hit count: 336

I have two copy constructors

Foo(Foo &obj){

}
Foo(Foo *obj){

}

When the second copy constructor will get called?

© Stack Overflow or respective owner

Related posts about c++

Related posts about copy-constructor