考虑以下代码:
#include <iostream>
struct S
{
S(std::string s) : s_{s} { std::cout << "S( string ) c-tor\n"; }
S(S const&) { std::cout << "S( S const& ) c-tor\n"; }
S(S&& s) { std::cout << "S&& c-tor\n"; s_ = std::move(s.s_); }
S& operator=(S const&) { std::cout << "operator S( const& ) c-tor\n"; return *this;}
S& operator=(S&& s) { std::cout << "operator (S&&)\n"; s_ = std::move(s.s_); return *this; }
~S() { std::cout << "~S() d-tor\n"; }
std::string s_;
};
S foo() { return S{"blaaaaa"}; }
struct A
{
A(S s) : s_{s} {}
S s_;
};
struct B : public A
{
B(S s) : A(s) {}
};
int main()
{
B b(foo());
return 0;
}
当我用g++ -std=c++1z -O3 test.cpp
编译它时,我得到以下输出:
S( string ) c-tor
S( S const& ) c-tor
S( S const& ) c-tor
~S() d-tor
~S() d-tor
~S() d-tor
我想知道为什么没有副本省略?我期待更像这样的事情:
S( string ) c-tor
~S() d-tor
使用-fno-elide-constructors
编译时输出相同答案 0 :(得分:5)
正如预期的那样,foo
返回值会发生复制省略。
其他两个副本发生在B
和A
构造函数中。请注意,在输出中,它会调用S(S const&)
两次,而人们可能会看到S(S&&)
至少有一个B(foo())
。这是因为编译器已经删除了使用S(S&&)
创建的额外副本。如果使用-fno-elide-constructors
进行编译,则可以看到这两个额外的副本:
S::S(std::string)
S::S(S&&)
S::~S()
S::S(S&&)
S::S(const S&)
S::S(const S&)
S::~S()
S::~S()
S::~S()
S::~S()
而没有-fno-elide-constructors
的输出是:
S::S(std::string)
S::S(const S&)
S::S(const S&)
S::~S()
S::~S()
S::~S()
参见copy initialization(用于函数参数的初始化):
首先,如果
T
是类类型且初始值设定项是prvalue
表达式,其cv-unqualified类型与T
是同一类,则初始化表达式本身,而不是临时具体化,用于初始化目标对象:请参阅copy elision。
您可以通过引用接受来避免剩下的两份副本:
struct A
{
A(S&& s) : s_{std::move(s)} {}
S s_;
};
struct B : public A
{
B(S&& s) : A(std::move(s)) {}
};
输出:
S( string ) c-tor <--- foo
S&& c-tor <--- A::s_
~S() d-tor
~S() d-tor