我的功能输出不一致。该函数假设打开一个文件,然后从文件中提取整数,然后将整数设置为一个数组。如果有20个整数,我在从文件中提取到数组时遇到问题。当我尝试这样做时,我看到“阵列超出界限”。
如果文件名不正确或者文件的上下文中没有整数,该函数也会提示输入提示。这两个似乎都正常工作。
非常感谢任何帮助。
bool loadArrayFromFile(int a[], int &n)
{
ifstream infile;
string fileName;
cout<<"Enter the name of file: ";
cin>>fileName;
infile.open(fileName.c_str());
if(!infile)
{
cout<<"File didn't open"<<endl; //if file name is incorrect or could not be opened
return false;
}
int count=0; //count values in file
int elem=0; //keeps track of elements
infile>>a[elem];
while(infile.good())
{
elem++;
count++;
infile>>a[elem];
}
if(!infile.eof())
{
cout<<"Wrong datatype in file"<<endl;
infile.clear();
infile.close();
return false;
}
n=count;
infile.close();
return true;
}
答案 0 :(得分:1)
您的问题描述听起来好像您给的元素太少了。您可能需要考虑使用std::vector<int>
并读取元素,例如
std::vector<int> array;
array.assign(std::istream_iterator<int>(infile), std::istream_iterator<int>());