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


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