在下面的代码中,我为 Test u = "u";
调用了两个构造函数。但是,如果我注释掉析构函数,那么我只会得到一个构造函数调用。这是为什么?
#include <iostream>
template<class T>
auto operator<<(std::ostream& os, const T& t) -> decltype(t.print(os), os)
{
t.print(os);
return os;
}
class Test
{
public:
template<typename T>
Test(T&& t)
{
std::cout << "Test " << t << '\n';
}
~Test() = default; // if commented out removes one construction
void print(std::ostream& os) const
{
os << "[with T = Test]";
}
};
int main()
{
Test u = "u"; // two constructors (second, a temporary, with T = Test)
Test t("t"); // one constructor
}
用户声明的析构函数,即使它是默认的,也意味着不会生成移动构造函数。
12.8 Copying and moving class objects [class.copy]
9 If the definition of a class X
does not explicitly declare a move constructor, one will be implicitly declared as defaulted if and only if
[...]
(9.4) -- X
does not have a user-declared destructor.
如果生成移动构造函数,那么它比模板构造函数更适合移动。它不保存构造函数调用,它只是意味着调用了一个不同的构造函数,一个不打印任何内容的构造函数。
我是一名优秀的程序员,十分优秀!