What happens (exactly) if you leave out the copy-constructor in a C++ class? -
what happens (exactly) if leave out copy-constructor in c++ class?
is class memcpy'd or copied member wise?
the class copied member-wise.
this means copy constructors of members called.
Comments
Post a Comment