怎么将txt文档中的内容导入到C++得对象数组中

如题所述

ifstream fin ("a.txt" , ios::in|ios::nocreate);
if( !fin.open())
{
cout << "error open file " << endl ;
}
while( !fin.eof())
{
fin>>对象变量
}
fin.close() ;
温馨提示:内容为网友见解,仅供参考
无其他回答
相似回答