奥礼网
新记
怎么将txt文档中的内容导入到C++得对象数组中
如题所述
举报该文章
相关建议 2011-07-26
ifstream fin ("a.txt" , ios::in|ios::nocreate);
if( !fin.open())
{
cout << "error open file " << endl ;
}
while( !fin.eof())
{
fin>>对象变量
}
fin.close() ;
温馨提示:内容为网友见解,仅供参考
当前网址:
https://aolonic.com/aa/1w4aaa4n4.html
其他看法
无其他回答
相似回答
大家正在搜
相关问题
请问C++ 如何从txt文件中读取数据,然后保存在类的数组中...
C++ 怎么从txt文件中读取出来写入数组中呢
如何用C++读取文本文件中的数据块对对象数组成员进行赋值
C++将数组中数据放到txt文件中
如何用C++从.txt文件中读取数据写入数组
c++中类对象数组如何读取文件?
怎样用C++从txt文件中读取数据写入数组
如何c++按例读取txt文件中数据放到数组中