1个回答
推荐于2016-01-16
展开全部
#include<iostream>
#include<vector>
#include<string>
using namespace std;
int main()
{
cout << "Vector for string" << endl;
const string str[] = { "The", "vector", "for", "strings." };
vector < string > svec(str, str + 4);
vector < string >::iterator its; // iterator for the string vector
for (its = svec.begin(); its != svec.end(); its++)
cout << *its << " "; // dereference the iterator to get the string
cout << "\n";
return 0;
}
#include<vector>
#include<string>
using namespace std;
int main()
{
cout << "Vector for string" << endl;
const string str[] = { "The", "vector", "for", "strings." };
vector < string > svec(str, str + 4);
vector < string >::iterator its; // iterator for the string vector
for (its = svec.begin(); its != svec.end(); its++)
cout << *its << " "; // dereference the iterator to get the string
cout << "\n";
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询