list::assign
Usuwa elementy z listy i kopiuje nowy zestaw elementów na liście cel.
void assign( size_type Count, const Type& Val ); void assign initializer_list<Type> IList ); template<class InputIterator> void assign( InputIterator First, InputIterator Last );
Parametry
First
Pozycja pierwszego elementu w zakresie elementów do skopiowania z listy argumentów.Last
Pozycja pierwszego elementu poza zakres elementy do skopiowania z listy argumentów.Count
Liczba kopii elementu wstawiana do listy.Val
Wartość elementu jest umieszczone na liście.IList
Initializer_list, zawierającego elementy do wstawienia.
Uwagi
Po wymazywanie każdy istniejący element na liście cel, przypisywanie z pierwotnej listy lub z kilku innych listy Wstawia określony zakres elementów na liście cel albo wstawia kopii nowego elementu określoną wartość na liście cel
Przykład
// list_assign.cpp
// compile with: /EHsc
#include <list>
#include <iostream>
int main()
{
using namespace std;
list<int> c1, c2;
list<int>::const_iterator cIter;
c1.push_back(10);
c1.push_back(20);
c1.push_back(30);
c2.push_back(40);
c2.push_back(50);
c2.push_back(60);
cout << "c1 =";
for (auto c : c1)
cout << " " << c;
cout << endl;
c1.assign(++c2.begin(), c2.end());
cout << "c1 =";
for (auto c : c1)
cout << " " << c;
cout << endl;
c1.assign(7, 4);
cout << "c1 =";
for (auto c : c1)
cout << " " << c;
cout << endl;
c1.assign({ 10, 20, 30, 40 });
cout << "c1 =";
for (auto c : c1)
cout << " " << c;
cout << endl;
}
Wymagania
Nagłówek: < listy >
Przestrzeń nazw: std