关于VS2010中C++中文本读入保存到一个string类型的vector容器中,请问如何操作??

2024-12-03 13:16:32
推荐回答(3个)
回答1:

//文本读入到vector容器中,一般这么写

//定义vector
std::vector wordsLong; //名为wordsLong的vector容器
//string对象
string word="aaa";

// word读入vector
wordsLong.insert(wordsLong.end(),word);

PS:vector你可以把它看成是一个数组一样的存在,它在内存中的排列是顺序的,不过数组只能存放char字符,int、double等基本数据类型。vector是什么类型都可以存放。

回答2:

保存数据到文件可以使用STL 中的fstream类啊.头文件是

回答3:

cvxdsvefds