轉發列表在 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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。