C ++ Deque operator =()函數(shù)將新內(nèi)容分配給容器,并替換當(dāng)前相同類(lèi)型的內(nèi)容。雙端隊(duì)列的大小可以相應(yīng)地修改。
deque& operator(deque& x);
x:這是一個(gè)雙端隊(duì)列容器,其內(nèi)容將被復(fù)制到另一個(gè)雙端隊(duì)列對(duì)象中。
它返回* this。
讓我們看一個(gè)簡(jiǎn)單的實(shí)例
#include <iostream> #include<deque> using namespace std; int main() { deque<int> a={1,2,3,4,5}; deque<int> b; b.operator=(a); for(int i=0;i<b.size();i++) { cout<<b[i]; cout<<" "; } return 0; }
輸出:
1 2 3 4 5
在此示例中,operator =()將'a'容器的內(nèi)容分配給'b'容器。
讓我們看一個(gè)簡(jiǎn)單的示例,當(dāng)兩個(gè)雙端隊(duì)列是不同類(lèi)型的。
#include <iostream> #include<deque> using namespace std; int main() { deque<int> a={10,20,30,40,50}; deque<char> b; b.operator=(a); for(int i=0;i<b.size();i++) { cout<<b[i]; cout<<" "; } return 0; }
輸出:
error: no matching function for call to 'std::deque<char>::operator=(std::deque<int>&)'
在此示例中,“ a”和“ b”的類(lèi)型不同。因此,operator =()函數(shù)將拋出錯(cuò)誤。