本文介绍了C ++标准是否保证插入关联容器失败不会修改rvalue-reference参数?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

#include <set>
#include <string>
#include <cassert>

using namespace std::literals;

int main()
{
    auto coll = std::set{ "hello"s };
    auto s = "hello"s;
    coll.insert(std::move(s));
    assert("hello"s == s); // Always OK?
}

C ++标准是否保证插入关联容器失败不会修改rvalue-reference参数?

推荐答案

明确且明确的. Standard没有这种保证,这就是为什么 try_emplace 存在的原因.

Explicit and unequivocal NO. Standard doesn't have this guarantee, and this is why try_emplace exists.

请参阅注释:

这篇关于C ++标准是否保证插入关联容器失败不会修改rvalue-reference参数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-20 10:52