在C++中,set的emplace函數用于在set中插入新元素,并返回一個pair對象,其中第一個元素是迭代器,指向插入的元素,第二個元素是一個布爾值,表示是否插入成功。
以下是一個示例代碼,演示了set的emplace函數的用法:
#include <iostream>
#include <set>
int main() {
std::set<int> mySet = {1, 2, 3, 4};
auto result = mySet.emplace(5);
if (result.second) {
std::cout << "Element inserted successfully" << std::endl;
} else {
std::cout << "Element already exists in the set" << std::endl;
}
std::cout << "Set elements:";
for (auto it = mySet.begin(); it != mySet.end(); ++it) {
std::cout << ' ' << *it;
}
std::cout << std::endl;
return 0;
}
在上面的代碼中,首先創建了一個包含1、2、3、4的set。然后使用emplace函數嘗試插入元素5,判斷插入是否成功并輸出相應的消息。最后,遍歷set中的元素并輸出它們。
運行該代碼將輸出:
Element inserted successfully
Set elements: 1 2 3 4 5