5

我编写了以下代码来理解移动语义。它在 g++-4.6 中按预期工作(即没有副本,只有移动),但在 g++-4.7.0 中没有。我认为这是 g++-4.7.0 中的链接错误,但这个链接说它不是 g++-4.7 中的错误。因此,正如我从上面的链接所理解的那样,我将移动构造函数设置为 nothrow,但它仍然只复制。但是,如果我不使用复制构造函数,则只会发生移动。任何人都可以解释这一点吗?

#include <iostream>
#include <vector>
using namespace std;

struct S{
int v;
static int ccount, mcount;
S(){}
    //no throw constructor
    //S(nothrow)(const S & x){
S(const S & x){
    v = x.v;
    S::ccount++;
}
S(S&& x){
    v = x.v;
    S::mcount++;
}
};

int S::ccount = 0;
int S::mcount = 0;
int main(){

vector<S> v;
S s;

for(int i = 0; i < 10; i++) {
    v.push_back(std::move(s));
}

cout << "no of moves = " << s.mcount << endl;
cout << "no of copies = " << s.ccount << endl;
return 0;
}
4

1 回答 1

5

您如何“使移动构造函数不抛出”?使用 g++ 4.7,如果我用注释移动构造函数,noexcept那么您的示例只会移动:

S(S&& x) noexcept{ ... }

no of moves = 25
no of copies = 0
于 2012-04-20T06:34:04.840 回答