Re: Copy constructor not called
Carlos Moreno ha scritto:
Christoph Bartoschek wrote:
the copy construcotr I provided for the following class is not provided.
Instead I think that a compiler generated one is used. Can anyone give
me a hint why this is the case?
#include <iostream>
class P {};
template <typename T> class Type {
public:
Type() { std::cerr << "Default constructor: " << this << std::endl; }
template <typename U> Type(Type<U> const & other)
{ std::cerr << "Copy constructor: " << this << std::endl; }
~Type() { std::cerr << "Destructor: " << this << std::endl; }
};
*sigh* templates!!! :-)
Though I tend to believe that your code *should* work, and
that your function should be called whenever a copy is made
(or an explicit instantiation, like in your client code),
perhaps the compiler assumes (compiler bug??) that that can
not be a copy constructor, since it is templatized to accept
objects of other classes as parameters? (when U != T)
The compiler is correct, the OP's ctor shall not be called. A template
constructor is never a copy constructor and never suppresses the
implicit generation of a copy constructor (see Seungbeom Kim post for
reference). So in the code
int main() {
Type<P> src;
Type<P> tgt(src);
}
the compiler has to choose between the explicitly provided templated
constructor *and* the implicitly generated copy constructor. The latter
matches and so it's chosen, according to the general overload rule that
matching functions are always preferred to function templates.
FWIW, I would define the copy consrtuctor as follows:
Type (const Type<T> & other)
<snip>
Would the above modification make your code work as expected?
Sure it should work, because that would be a "true" copy constructor.
You can also omit the "<T>" up there, because "Type" without a
subsequent "<" can be used to refer to Type<T> in the template's scope
(?14.6.1/1).
Ganesh
--
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]