使用数组初始化vector

  1. 使用数组对C++ Vector进行初始化
  2. int i[10] ={1,2,3,4,5,6,7,78,8} ;  
  3. ///第一种   
  4. vector<int> vi(i+1,i+3); ///从第2个元素到第三个元素  
  5. for(vector <int>::interator it = vi.begin() ; 
  6. it != vi.end() ; it++)  
  7. {  
  8. cout << *it <<" " ;   

你可能感兴趣的:(使用数组初始化vector)