码迷,mamicode.com
首页 > 其他好文 > 详细

Sequential Container

时间:2015-01-28 12:57:37      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:

Notes from C++ Primer

 

Initialization

When copy a container to another, the container type and element type must be match at the same time:

vector<int> ivec;
vector<int> ivec2(ivec);		// ok: ivec is vector<int>
list<int> ilist(ivec);			// error: ivec is not ilist<int>
vector<double> dvec(ivec);		// error: ivec holds int not double

 

Use iterator to intialize container:

// initialize slist with copy of each element of svec
list<string> slist(svec.begin(), svec.end());

// find midpoint in the vector
vector<string>::iterator mid = svec.begin() + svec.size() / 2;

// initialize front with first half of svec: the elements up to but not including *mid
deque<string> front(svec.begin(), mid);

// initialize front with second half of svec: the elements *mid through end of svec
deque<string> back(mid, svec.end());

 

Sequential Container

标签:

原文地址:http://www.cnblogs.com/kid551/p/4255363.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!