描述
它在集合中插入一个新元素。
声明
以下是 std::set::emplace 在各种 C++ 版本中的工作方式。
C++98
template <class... Args> pair<iterator,bool> emplace (Args&&... args);
C++11
template <class... Args> pair<iterator,bool> emplace (Args&&... args);
返回值
它返回一对指向新插入元素的迭代器和一个 true 值。
异常
如果抛出异常,则容器中没有变化。
时间复杂度
取决于容器大小。
示例
以下示例显示了 std::set::emplace 的用法。
#include <iostream>
#include <set>
#include <string>
int main () {
std::set<std::string> myset;
myset.emplace("foo");
myset.emplace("bar");
auto ret = myset.emplace("bar");
if (!ret.second) std::cout << "bar already exists in myset\n";
return 0;
}
上述程序将正确编译和执行。
bar already exists in myset
相关用法
- C++ set emplace_hint用法及代码示例
- C++ set emplace()用法及代码示例
- C++ set emplace_hint()用法及代码示例
- C++ set empty()用法及代码示例
- C++ set empty用法及代码示例
- C++ set end用法及代码示例
- C++ set erase()用法及代码示例
- C++ set end()用法及代码示例
- C++ set equal_range()用法及代码示例
- C++ set erase用法及代码示例
- C++ set equal_range用法及代码示例
- C++ set rbegin()用法及代码示例
- C++ set upper_bound()用法及代码示例
- C++ set crbegin用法及代码示例
- C++ set size用法及代码示例
- C++ set swap()用法及代码示例
- C++ set size()用法及代码示例
- C++ set lower_bound()用法及代码示例
- C++ set begin用法及代码示例
注:本文由纯净天空筛选整理自 C++ Set Library - emplace Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。