C++ vector 实例二
发布时间:2020-12-16 07:18:11 所属栏目:百科 来源:网络整理
导读:// constructing vectors#include iostream#include vectorint main (){ // constructors used in the same order as described above: std::vectorint first; // empty vector of ints std::vectorint second (4,100); // four ints with value 100 std::ve
// constructing vectors
#include <iostream>
#include <vector>
int main ()
{
// constructors used in the same order as described above:
std::vector<int> first; // empty vector of ints
std::vector<int> second (4,100); // four ints with value 100
std::vector<int> third (second.begin(),second.end()); // iterating through second
std::vector<int> fourth (third); // a copy of third
std::cout << "The contents of second are:";
for (std::vector<int>::iterator it = second.begin(); it != second.end(); ++it)
{
std::cout << ‘ ‘ << *it;
}
std::cout << ‘n‘;
// the iterator constructor can also be used to construct from arrays:
int myints[] = {16,2,77,29};
std::vector<int> fifth (myints,myints + sizeof(myints) / sizeof(int) );
std::cout << "The contents of fifth are:";
for (std::vector<int>::iterator it = fifth.begin(); it != fifth.end(); ++it)
{
std::cout << ‘ ‘ << *it;
}
std::cout << ‘n‘;
return 0;
}
(编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |