STL的vector<string>的初始化方式总结

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

[cpp]  view plain  copy
 print ? 在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 plain  copy
 print ? 在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 plain  copy
 print ? 在CODE上查看代码片 派生到我的代码片
  1. string str[]={"hello","world","this","find","gank","pink","that","when","how","cpp"};  
  2. vector<string> strArray(str, str+10);  
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值