新微赢技术网

标题: [求助]一个在string中插入vector的问题 [打印本页]

作者: 依依    时间: 2009-11-3 01:56
标题: [求助]一个在string中插入vector的问题
#include<iostream>
#include<vector>
#include<string>
using namespace std;

int main()
{
string str(100,'n');
char *p[8]={"sdff","fghfgh","dfgdh","dfgss","dffh","gh","fghgfh"};
vector<char*>svec(p , p+7);
string::iterator iter1=str.begin();
cout<<"output string to there:"<<endl;
str.insert(str.begin(),svec.begin(),svec.end()); //不能通过devcpp的编译!!
cout<<str;
cin.get();
return 0;
}
作者: 若叶花吹雪    时间: 2009-11-3 01:56
string 和 char*不是同一类型




欢迎光临 新微赢技术网 (http://bbs.weiying.cn/) Powered by Discuz! X3.2