C++list容器list构造函数
#include <iostream>
#include <list>
using namespace std
;
void printList(const list
<int>& l
)
{
for (list
<int>::const_iterator it
= l
.begin(); it
!= l
.end(); ++it
)
{
cout
<< *it
<< " ";
}
cout
<< endl
;
}
void test()
{
list
<int>L1
;
L1
.push_back(10);
L1
.push_back(20);
L1
.push_back(30);
L1
.push_back(40);
printList(L1
);
list
<int>L2(L1
.begin(), L1
.end());
printList(L2
);
list
<int>L3(L2
);
printList(L3
);
list
<int>L4(10, 1000);
printList(L4
);
}
int main()
{
test();
return 0;
}
C++list容器list构造函数
转载请注明原文地址:https://tech.qufami.com/read-27401.html