STL的vector<string>的三种简单初始化方式

来源:互联网 发布:ubuntu安装谷歌浏览器 编辑:程序博客网 时间:2024/06/01 23:30

(1)第一种,类似于数组的方式:

[cpp] view plaincopyprint?在CODE上查看代码片派生到我的代码片
  1. std::vector<std::string> strArray(10);  
  2. strArray[0] = "hello";  
  3. strArray[1] = "world";  
  4. strArray[2] = "this";  
  5. strArray[3] = "find";  
  6. strArray[4] = "gank";  
  7. strArray[5] = "pink";  
  8. strArray[6 ]= "that";  
  9. strArray[7] = "when";  
  10. strArray[8] = "how";     
  11. strArray[9] = "cpp";  

(2)push_back的方式:

[cpp] view plaincopyprint?在CODE上查看代码片派生到我的代码片
  1. vector<string> strArray;  
  2. strArray.push_back("hello");  
  3. strArray.push_back("world");  
  4. strArray.push_back("this");  
  5. strArray.push_back("find");  
  6. strArray.push_back("gank");  
  7. strArray.push_back("pink");  
  8. strArray.push_back("that");  
  9. strArray.push_back("when");  
  10. strArray.push_back("how");     
  11. strArray.push_back("cpp");  

(3)构造函数的方式:

[cpp] view plaincopyprint?在CODE上查看代码片派生到我的代码片
  1. string str[]={"hello","world","this","find","gank","pink","that","when","how","cpp"};  
  2. vector<string> strArray(str, str+10);  
0 0
原创粉丝点击