我正在编写一个小脚本,要求我读取一个仅由数字组成的.txt文件。我对C ++并不熟悉,因此我的教授给了我们以下函数,它应该允许我们读取.txt文件:
(我很抱歉将整个功能放在这里,但由于我缺乏知识,我不能写一个最小的例子。)
int * ReadDataSample(const char * filename,int * NoSamples, int * NoApcs){
ifstream SamplesFile;
int Counter = 0;
float data = 0;
int * p = NULL;
char * s = NULL;
SamplesFile.open(filename,ios::in);
if(SamplesFile.is_open())
{
while(!SamplesFile.eof())
{
SamplesFile >> data;
Counter++;
}
SamplesFile.clear();
SamplesFile.seekg (0, ios::beg);
// read line
s = new (nothrow) char[Counter];
if(s == 0) { cout <<"Error: opening file for reading - could not allocate memory..." << endl; exit(EXIT_FAILURE); }
(*NoSamples) = 0;
// count number of samples in s
while (SamplesFile.getline(s, Counter))
{
++(*NoSamples);
}
(*NoApcs) = Counter/(*NoSamples);
SamplesFile.clear();
SamplesFile.seekg (0, ios::beg);
delete [] s;
}else{ cout << " Error opening file... exiting"<< endl; exit(EXIT_FAILURE);}
// allocate memory...
if(Counter != 0)
{
p = new (nothrow) int [Counter];
if(p == 0) { cout <<"Error: opening file for reading - could not allocate memory..." << endl; exit(EXIT_FAILURE); }
for(int i = 0; i < Counter && SamplesFile.eof()!=true; i++)
{
SamplesFile >> data;
p[i] = (int)data;
}
return p;
}else{
return NULL;
}
}
我尝试通过首先启动指向int的指针来调用此函数:
int NoLines = 480, NoColumns = 640;
int * p;
p = ReadDataSample("file.txt",& NoLines, & NoColumns);
然而,当我运行代码时,我没有得到任何错误,但我得到了输出 浮点异常 在控制台中。现在,我主要的唯一一件事是一个有消息的cout。
如果有人能指出我正确的方向,我会很感激。
编辑:
由于每个人似乎都同意现在给我的代码不是最佳选择,所以我决定使用从网络收集的信息创建一个新代码。我有这个:
void grabI(Qstruct & q){
cout << "in grabI" << endl;
int counter = 0;
int i = 0;
ifstream myfile;
myfile.open("data.txt",ios::in);
if(myfile.is_open()){
while(!myfile.eof()){
myfile >> i;
counter++;
}
counter--;
myfile.close();
myfile.open("data.txt",ios::in);
for(i=0;i<counter;i++){
myfile >> q.I[i];
}
}
else{
cout << "Unable to read file." << endl;
}
myfile.close();
}
按预期工作。有什么我应该纠正的,或者我可以这样离开吗?
答案 0 :(得分:0)
你不能使用.eof()这很糟糕,而且通常来自C#我会说尝试一下(示例File.good()) 从那里开始。