模板化构造函数(如下所示)是否会覆盖隐式复制构造函数?
template <class T>
struct Foo
{
T data;
// ...
template <class U>
Foo(const Foo<U> &other) : data((T)doSomethingWith(other.data)) {}
// ...
};
other
如果是这样,如果按值而不是常量引用传递,它是否仍会覆盖它?
如果是这样,是否有任何方法可以在不明确定义复制构造函数的情况下解决这个问题?