命名空间
变体
操作

std::multiset<Key,Compare,Allocator>::emplace

来自 cppreference.com
< cpp‎ | 容器‎ | multiset
 
 
 
 
template< class... Args >
iterator emplace( Args&&... args );
(自 C++11 起)

使用给定的 args 在容器中就地构造一个新元素并插入。

新元素的构造函数将被调用,其参数与传递给 emplace 的参数完全相同,并通过 std::forward<Args>(args)... 转发。

谨慎使用 emplace 可以使新元素在构造时避免不必要的复制或移动操作。

没有迭代器或引用失效。

内容

[编辑] 参数

args - 转发到元素构造函数的参数

[编辑] 返回值

指向已插入元素的迭代器。

[编辑] 异常

如果出于任何原因抛出异常,则此函数无效 (强异常安全保证).

[编辑] 复杂度

容器大小的对数。

[编辑] 示例

#include <chrono>
#include <cstddef>
#include <functional>
#include <iomanip>
#include <iostream>
#include <string>
#include <set>
 
class Dew
{
private:
    int a, b, c;
 
public:
    Dew(int _a, int _b, int _c)
        : a(_a), b(_b), c(_c)
    {}
 
    bool operator<(const Dew& other) const
    {
        return (a < other.a) ||
               (a == other.a && b < other.b) ||
               (a == other.a && b == other.b && c < other.c);
    }
};
 
constexpr int nof_operations{101};
 
std::size_t set_emplace()
{
    std::multiset<Dew> set;
    for (int i = 0; i < nof_operations; ++i)
        for (int j = 0; j < nof_operations; ++j)
            for (int k = 0; k < nof_operations; ++k)
                set.emplace(i, j, k);
 
    return set.size();
}
 
std::size_t set_insert()
{
    std::multiset<Dew> set;
    for (int i = 0; i < nof_operations; ++i)
        for (int j = 0; j < nof_operations; ++j)
            for (int k = 0; k < nof_operations; ++k)
                set.insert(Dew(i, j, k));
 
    return set.size();
}
 
void time_it(std::function<int()> set_test, std::string what = "")
{
    const auto start = std::chrono::system_clock::now();
    const auto the_size = set_test();
    const auto stop = std::chrono::system_clock::now();
    const std::chrono::duration<double, std::milli> time = stop - start;
    if (!what.empty() && the_size)
        std::cout << std::fixed << std::setprecision(2)
                  << time << " for " << what << '\n';
}
 
int main()
{
    time_it(set_insert, "cache warming...");
    time_it(set_insert, "insert");
    time_it(set_insert, "insert");
    time_it(set_emplace, "emplace");
    time_it(set_emplace, "emplace");
}

可能的输出

499.61ms for cache warming...
447.89ms for insert
436.77ms for insert
430.62ms for emplace
428.61ms for emplace

[编辑] 另请参阅

使用提示就地构造元素
(公共成员函数) [编辑]
插入元素 或节点(自 C++17 起)
(公共成员函数) [编辑]