C++ map operator=() 函数

C++ map operator=() 函数

在map中,operator=()有以下三种用法:

  1. Operator=() 用于通过替换旧内容(或进行复制)来为map容器分配新内容,并根据需要修改其大小。
  2. Operator=() 用于将一个map容器的内容移动到另一个map容器中,并根据需要修改其大小。
  3. Operator=() 用于将初始化列表中的元素复制到map容器中。

语法

copy(1) map& operator= (const map& x); //until C++ 11
copy (1) map& operator= (const map& x); //since C++ 11
move (2) map& operator= (map&& x); //since C++ 11
initializer list (3) map& operator= (initializer_list<value_type> il); //since C++ 11

copy (1):- 将x中的所有元素复制到map容器中。

move (2):- 将x的内容移动到map容器中。

initializer_list (3):- 将il的元素复制到map容器中。

参数

x :具有相同类型的map对象。

il :一个初始化列表对象。

返回值

this指针。

示例1

让我们看一个简单的示例,将一个map的内容复制到另一个map中。

#include <iostream>
#include <map>

using namespace std;

int main(void) {

   map<char, int> m1 = {
            {'a', 10},
            {'b', 20},
            {'c', 30} };

   cout << "Map m1 contains following elements" << endl;
    for (auto it = m1.begin(); it != m1.end(); ++it)
      cout << it->first << " = " << it->second << endl;

    map<char, int> m2 = m1;  
    cout<<"\nAfter Copying the elements from m1 to m2... \n";  

    cout << "\nMap m2 contains following elements" << endl;
    for (auto it = m2.begin(); it != m2.end(); ++it)
      cout << it->first << " = " << it->second << endl;

   return 0;
}

输出:

Map m1 contains following elements
a = 10
b = 20
c = 30

After copying the elements from m1 to m2... 

Map m2 contains following elements
a = 10
b = 20
c = 30

在上面的示例中,使用operator=()函数将一个map m1的内容复制到另一个map m2中。

示例2

让我们看一个简单的示例,将一个map的元素移动到另一个map中。

#include <iostream>
#include <map>

using namespace std;

int main(void) {

   map<char, int> m1 = {
            {'a', 1},
            {'b', 2},
            {'c', 3} };


      cout << "Map m1 contains following elements" << endl;
    for (auto it = m1.begin(); it != m1.end(); ++it)
      cout << it->first << " = " << it->second << endl;

    map<char, int> m2 = move(m1); 
    cout<<"\nAfter moving the elements from m1 to m2... \n";  

    cout << "\nMap m2 contains following elements" << endl;
    for (auto it = m2.begin(); it != m2.end(); ++it)
      cout << it->first << " = " << it->second << endl;

   return 0;
}

输出:

Map m1 contains following elements
a = 1
b = 2
c = 3

After moving the elements from m1 to m2... 

Map m2 contains following elements
a = 1
b = 2
c = 3

在上面的示例中,operator=()函数用于将一个map m1的内容移动到另一个map m2。

示例3

让我们看一个简单的示例,将初始化列表的内容复制到map中。

#include <iostream>
#include <map>

using namespace std;

int main(void) {
   map<char, int> m;

   m =  {
      {'a', 100},
      {'b', 200},
      {'c', 300},
      {'d', 400}  };

   cout << "Map contains the following elements" << endl;

   for (auto it = m.begin(); it != m.end(); ++it)
      cout << it->first << " = " << it->second << endl;

   return 0;
}

输出:

Map contains the following elements
a = 100
b = 200
c = 300
d = 400

在上面的示例中,operator=()用于将初始化列表的内容复制到map m中。

示例4

让我们看一个简单的示例。

#include <iostream>
#include <map>

using namespace std;

int main ()
{
  map<char,int> first;
  map<char,int> second;

  first['x']=8;
  first['y']=16;
  first['z']=32;

  second=first;                // second now contains 3 ints
  first=map<char,int>();       // and first is now empty

  cout << "Size of first: " << first.size() << '\n';
  cout << "Size of second: " << second.size() << '\n';
  return 0;
}

输出:

Size of first: 0
Size of second: 3

在上面的示例中,首先它会先计算空地图的大小,然后向第一个地图添加一些元素并复制到第二个地图中。

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程