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


C++ multimap::operator=用法及代碼示例


multimap::operator= 用於通過替換現有內容將新內容分配給容器。它還根據新內容修改大小。

句法:-

multimap1 = (multimap2)

Parameters:
Another container of the same type.

Result:
Assign the contents of the container passed as 
parameter to the container written on left 
side of the operator.

例子:

Input : multimap1 = { ('a', 1), ('b', 2), ('c', 3)}
          multimap2 = { ('d', 4), ('e', 5), ('f', 6)}
          multimap1 = multimap2;
Output: multimap1 
d 4
e 5
f 6

Input : multimap1 = { ('abc', 1), ('bca', 2), ('cab', 3)}
          multimap2 = { ('def', 4), ('efd', 5), ('fde', 6)}
          multimap1 = multimap2;
Output: multimap1 
def 4
efd 5
fde 6

錯誤和異常

1. 如果容器類型不同,則拋出錯誤。
2. 否則它有一個基本的無異常拋出保證。


// CPP Program to illustrate working of
// multimap::operator= 
#include <iostream>
#include <map>
using namespace std;
  
int main()
{
    // initialise multimap
    multimap<char, int> m1;
    multimap<char, int> m2;
  
    // iterator for iterate all element of multimap
    multimap<char, int>::iterator iter;
  
    // multimap1 data
    m1.insert(make_pair('a', 1));
    m1.insert(make_pair('b', 2));
    m1.insert(make_pair('c', 3));
  
    // multimap2 data
    m2.insert(make_pair('d', 4));
    m2.insert(make_pair('e', 5));
    m2.insert(make_pair('f', 6));
  
    // operator=
    m1 = m2;
  
    // multimap1 data
    cout << "MultiMap 1 data" << "\n";
    for (iter = m1.begin(); iter != m1.end(); iter++)
        cout << (*iter).first << " " << (*iter).second << "\n";
}

輸出:-

MultiMap 1 data
d 4
e 5
f 6



相關用法


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