c++ stl 声明对象的同时如何初始化?

声明一个stl中像vector,list,set等等的对象的同时,如何对她们初始化?有哪些方法能在声明的同时初始化?这里不用push_back()函数咯。希望大家能帮助我... 声明一个stl中像vector,list,set等等的对象的同时,如何对她们初始化?有哪些方法能在声明的同时初始化?这里不用push_back()函数咯。希望大家能帮助我,越详细越好,copy的也行,或教我如何查,或者到哪里查的方法也行,只要符合我上面说的两点要求,分很好说。我查msdn也没有查到,不知道是不是我的方法有问题。非常感激!万分感激!
哇,很感谢大家,有这么多的高手,受益匪浅啊!
其实不一定要在声明的同时初始化,声明过后初始化也行。
感谢大家的答案,都不知道哪个好了,采纳一个答案后,很想给每个给我意见的人分,不知道百度有没有这个功能。
展开
 我来答
tunsanty
2009-08-20 · TA获得超过344个赞
知道小有建树答主
回答量:200
采纳率:0%
帮助的人:318万
展开全部
如果是声明的时候就初始化,好像只有使用每个容器的带参数构造函数来初始化

除此之外,就是声明以后的初始化,
对于list, deque,vector, 使用 assign

对于下面的,
set, multiset, map, multimap 使用 insert
stack, queue, priority_queue 使用 push
不过对于这些实际上已经不算是是真正的初始化了。

list:

// list::assign
#include <iostream>
#include <list>
using namespace std;

int main ()
{
list<int> first;
list<int> second;

first.assign (7,100); // 7 ints with value 100

second.assign (first.begin(),first.end()); // a copy of first

int myints[]={1776,7,4};
first.assign (myints,myints+3); // assigning from array

cout << "Size of first: " << int (first.size()) << endl;
cout << "Size of second: " << int (second.size()) << endl;
return 0;
}

====================
output:
Size of first: 3
Size of second: 7
====================

vector:
// vector assign
#include <iostream>
#include <vector>
using namespace std;

int main ()
{
vector<int> first;
vector<int> second;
vector<int> third;

first.assign (7,100); // a repetition 7 times of value 100

vector<int>::iterator it;
it=first.begin()+1;

second.assign (it,first.end()-1); // the 5 central values of first

int myints[] = {1776,7,4};
third.assign (myints,myints+3); // assigning from array.

cout << "Size of first: " << int (first.size()) << endl;
cout << "Size of second: " << int (second.size()) << endl;
cout << "Size of third: " << int (third.size()) << endl;
return 0;
}

====================
output:
Size of first: 7
Size of second: 5
Size of third: 3
====================

deque:
// deque::assign
#include <iostream>
#include <deque>
using namespace std;

int main ()
{
deque<int> first;
deque<int> second;
deque<int> third;

first.assign (7,100); // a repetition 7 times of value 100

deque<int>::iterator it;
it=first.begin()+1;

second.assign (it,first.end()-1); // the 5 central values of first

int myints[] = {1776,7,4};
third.assign (myints,myints+3); // assigning from array.

cout << "Size of first: " << int (first.size()) << endl;
cout << "Size of second: " << int (second.size()) << endl;
cout << "Size of third: " << int (third.size()) << endl;
return 0;
}

====================
output:
Size of first: 7
Size of second: 5
Size of third: 3
====================

set:
// set::insert
#include <iostream>
#include <set>
using namespace std;

int main ()
{
set<int> myset;
set<int>::iterator it;
pair<set<int>::iterator,bool> ret;

// set some initial values:
for (int i=1; i<=5; i++) myset.insert(i*10); // set: 10 20 30 40 50

ret = myset.insert(20); // no new element inserted

if (ret.second==false) it=ret.first; // "it" now points to element 20

myset.insert (it,25); // max efficiency inserting
myset.insert (it,24); // max efficiency inserting
myset.insert (it,26); // no max efficiency inserting

int myints[]= {5,10,15}; // 10 already in set, not inserted
myset.insert (myints,myints+3);

cout << "myset contains:";
for (it=myset.begin(); it!=myset.end(); it++)
cout << " " << *it;
cout << endl;

return 0;
}
====================
output:
myset contains: 5 10 15 20 24 25 26 30 40 50
====================
风若远去何人留
2015-10-26 · 知道合伙人互联网行家
风若远去何人留
知道合伙人互联网行家
采纳数:20412 获赞数:450129
专业C/C++软件开发

向TA提问 私信TA
展开全部
只要在声明对象的时候,增加初始化列表,使对象创建时调用对应的构造函数,即可完成同时初始化的操作。
具体调用方式,依赖于对象类型,及支持的构造函数。
以stl中的string类为例,如定义
string a;
即无参构造,将a初始化为空字符串。

string a("for test");
就是把string类型的对象a初始化为"for test"值。

具体对象支持的构造函数列表,可以查询STL的使用手册获取,根据程序需要灵活选择构造的参数个数和值。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
jaycnvip
2009-08-21 · TA获得超过767个赞
知道小有建树答主
回答量:998
采纳率:100%
帮助的人:642万
展开全部
STL 一般来说没有 vector<int> vi = ....的这种用法
而是建议采用先初始化元素,然后再添加元素到容器中去的方法,这也是STL中容器的高效访问的来由。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
sdfwds4
2009-08-20 · TA获得超过953个赞
知道小有建树答主
回答量:629
采纳率:0%
帮助的人:792万
展开全部
http://blog.chinahr.com/blog/kenlinc/post/98781
这是出自 C++ Primer中文版(第4版) 3.3 标准库vector类型
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
ivaniren
2009-08-20 · TA获得超过1471个赞
知道小有建树答主
回答量:1088
采纳率:0%
帮助的人:0
展开全部
http://www.cppreference.com/

随时可以查看
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式