emplace函數在C++容器中用于在容器中構造元素,它比insert函數更高效,因為它避免了額外的復制或移動操作。emplace函數接受的參數和元素的構造函數參數相同,可以直接在emplace函數中傳入這些參數以構造元素。
以下是使用emplace函數的示例:
#include <iostream>
#include <vector>
struct Person {
std::string name;
int age;
Person(std::string n, int a) : name(n), age(a) {}
};
int main() {
std::vector<Person> people;
// 使用emplace_back在vector中構造元素
people.emplace_back("Alice", 25);
people.emplace_back("Bob", 30);
// 遍歷vector中的元素
for (const auto& person : people) {
std::cout << "Name: " << person.name << ", Age: " << person.age << std::endl;
}
return 0;
}
在上面的示例中,我們定義了一個結構體Person,然后在vector中使用emplace_back函數構造了兩個Person對象。通過使用emplace函數,我們直接將參數傳遞給Person的構造函數,避免了額外的復制或移動操作。