当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ list::operator=用法及代码示例


列表是 C++ 中用于以非连续方式存储数据的容器。通常,数组和向量本质上是连续的,因此与列表中的插入和删除选项相比,插入和删除操作的成本更高。

列表::运算符=

此运算符用于通过替换现有内容将新内容分配给容器。
它还根据新内容修改大小。

用法:

listname1 = (listname2)
参数:
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 : mylist1 = 1, 2, 3
          mylist2 = 3, 2, 1, 4
          mylist1 = mylist2;
Output: mylist1 = 3, 2, 1, 4

Input : mylist1 = 2, 6, 1, 5
          mylist2 = 3, 2
          mylist1 = mylist2;
Output: mylist1 = 3, 2

错误和异常

1. 如果容器类型不同,则抛出错误。
2. 否则它有一个基本的无异常抛出保证。


// CPP program to illustrate
// Implementation of = operator
#include <iostream>
#include <list>
using namespace std;
  
int main()
{
    list<int> mylist1{ 1, 2, 3 };
    list<int> mylist2{ 3, 2, 1, 4 };
    mylist1 = mylist2;
    cout << "mylist1 = ";
    for (auto it = mylist1.begin();
              it != mylist1.end(); ++it)
        cout << ' ' << *it;
    return 0;
}

输出:

mylist1 = 3 2 1 4

相关用法


注:本文由纯净天空筛选整理自AyushSaxena大神的英文原创作品 list::operator= in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。