首页 > 其他 > 详细

Sequential Container

时间:2015-01-28 12:55:43      阅读:225      评论: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
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!