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


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



转发列表在 STL 中实现了单链表。从 C++11 引入,前向列表在插入、删除和移动操作(如排序)方面比其他容器有用,并允许时间常数插入和删除元素。它与列表的不同之处在于前向列表跟踪仅下一个元素的位置,而列表同时跟踪下一个和上一个元素。

forward_list::operator=

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

用法:

forwardlistname1 = (forwardlistname2)
Parameters:
Another container of the same type.
Result:
Assign the contents of the container passed as the 
parameter to the container written on left side of the operator.

例子:

Input : myflist1 = 1, 2, 3
          myflist2 = 3, 2, 1, 4
          myflist1 = myflist2;
Output: myflist1 = 3, 2, 1, 4

Input : myflist1 = 2, 6, 1, 5
          myflist2 = 3, 2
          myflist1 = myflist2;
Output: myflist1 = 3, 2

错误和异常

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


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

输出:

myflist1 = 3 2 1 4

相关用法


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