以下程序的输出...
#include <iostream>
using namespace std;
struct X
{
X(const X&) { cout << "copy" << endl; }
X(X&&) { cout << "move" << endl; }
template<class T> X(T&&) { cout << "tmpl" << endl; }
};
int main()
{
X x1 = 42;
X x2(x1);
}
是
tmpl
tmpl
所需的输出是:
tmpl
copy
为什么具体的复制构造函数不优先于模板构造函数?
无论如何要修复它,以便复制和移动构造函数重载优先于模板构造函数?