gpt4 book ai didi

c++ - std::vector 引用被复制到 .insert()

转载 作者:行者123 更新时间:2023-11-28 02:27:01 28 4
gpt4 key购买 nike

我正在尝试这段代码,但不断发生的事情是,当我插入 vector 时,引用没有改变。例如,在第一次插入 vector 时,所有 11 个元素都将同样更改,包括 temp_word。这是预期的行为吗?

std::cout << "Searching for the top 10 scrabble scores" << std::endl;
Word temp_word;
std::vector<std::pair<Word&, unsigned>> word_scores;
for(unsigned x = 0; x < 10; ++x)
word_scores.push_back({temp_word, 0});
for(Word& word : dict.words()){
auto score = word.CalculateScrabbleScore();
for(unsigned x = 0; x < 10; ++x){
if(word_scores[x].second <= score){
// Insert into the list of scores
word_scores.insert(word_scores.begin() + x, {word , score});
// Remove what was pushed off the list
word_scores.erase(word_scores.begin() + 10);
break;
}
}
}

最佳答案

std::pair包含一个引用类型的成员,它的复制构造函数和赋值运算符之间有一个非常明显的区别。考虑:

int n = 42;
std::pair<int&, int> p1{n, 0};
std::pair<int&, int> p2(p1);
assert(&p1.first == &p2.first);

两者都是 p1.firstp2.first现在引用n .比较和对比:

int n = 42;
std::pair<int&, int> p1{n, 0};
int m = 84;
std::pair<int&, int> p2{m, 0};
p2 = p1;
assert(m == n);

p1.first仍指n , p2.first仍指m , 但现在 mn 具有相同的值.

引用在初始化时绑定(bind),之后无法重新绑定(bind)。对引用的赋值实际上是对底层对象的赋值。

vector::insert可以合法地使用复制构造函数、赋值运算符或两者的任意组合来移动元素。在您的示例中发生的是 vector::insert首先将元素移开(可能通过分配,但这并不重要),然后分配给“空”点。但那个地方并不是真的空着——它仍然保留着它原来的元素。正是在这次任务中temp_word以同样的方式被修改mp2 = p1; 修改在我之前的例子中。

关于c++ - std::vector 引用被复制到 .insert(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30209939/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com