當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ map emplace()用法及代碼示例


map::emplace()是C++ STL中的內置函數,它將鍵及其元素插入到映射容器中。有效地將容器尺寸增加了一個。如果多次放置同一個鍵,則映射僅存儲第一個元素,因為映射是不存儲多個相同值的鍵的容器。

用法:

map_name.emplace(key, element)

參數:該函數接受兩個強製性參數,如下所述:


  • key –指定要在多圖容器中插入的鍵。
  • element –指定要插入Map容器的鍵元素。

返回值:該函數不返回任何內容。

// C++ program for the illustration of 
// map::emplace() function 
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
  
    // initialize container 
    map<int, int> mp; 
  
    // insert elements in random order 
    mp.emplace(2, 30); 
    mp.emplace(1, 40); 
    mp.emplace(2, 20); 
    mp.emplace(1, 50); 
    mp.emplace(4, 50); 
  
    // prints the elements 
    cout << "\nThe map is : \n"; 
    cout << "KEY\tELEMENT\n"; 
    for (auto itr = mp.begin(); itr != mp.end(); itr++) 
        cout << itr->first << "\t" << itr->second << endl; 
  
    return 0; 
}
輸出:
The map is : 
KEY    ELEMENT
1    40
2    30
4    50


相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 map emplace() in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。