std::unordered_multiset::emplace
STD:无序[医]多套::
template< class... Args > iterator emplace( Args&&... args | | (since C++11) |
---|
将一个新元素插入到在给定的容器中构造的容器中。args
...
谨慎使用emplace允许构造新元素,同时避免不必要的复制或移动操作。调用新元素的构造函数的参数与提供给emplace,通过std::forward<Args>(args)......
如果由于插入而发生重散列,则所有迭代器都将失效。否则迭代器不会受到影响。引用不失效。只有当新元素数大于max_load_factor()*bucket_count()
...
参数
args | - | arguments to forward to the constructor of the element |
---|
返回值
将迭代器返回到插入的元素。
例外
如果任何操作引发异常,则此函数没有任何效果。
复杂性
平均摊还常数,最坏情况是容器的大小呈线性。
例
另见
emplace_hint | constructs elements in-place using a hint (public member function) |
---|---|
insert | inserts elements or nodes (since C++17) (public member function) |
© cppreference.com
在CreativeCommonsAttribution下授权-ShareAlike未移植许可v3.0。