c++ vector init操作

1)

string   str[n]={"hello", ...};
vector<string> strArray(str,str+n);

2)

vector<string> strArray;
strArray.push_back("hello");
strArray.push_back("world");

 

 

 

ref:  http://bbs.csdn.net/topics/360083770

posted @ 2017-03-03 16:43  圆旭  阅读(841)  评论(0编辑  收藏  举报