首页 > 代码库 > Sequential Container
Sequential Container
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 sveclist<string> slist(svec.begin(), svec.end());// find midpoint in the vectorvector<string>::iterator mid = svec.begin() + svec.size() / 2;// initialize front with first half of svec: the elements up to but not including *middeque<string> front(svec.begin(), mid);// initialize front with second half of svec: the elements *mid through end of svecdeque<string> back(mid, svec.end());
Sequential Container
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。