我正在尝试读取从 C 转换为 C++ 的电话簿应用程序的文件末尾。当我从文件中打印结果时,我得到了这个:
johnny smith
(Home)3
(Cell)4
x☺> x☺>
(Home)4
(Cell)4
它应该打印:
johnny smith
(Home)3
(Cell)4
现在我正在使用while(!infile.eof())
我读过的一个不好的做法,但是当我使用时,infile.getline()
我会重复名字和姓氏,并且格式都被抬高了。无论如何(或另一种方式)来摆脱输入末尾的垃圾或另一种在 C++ 中读取到文件末尾的方式来解决这个问题。我一直在阅读不同的解决方案,但很多网站似乎都同意的是fgets
,这是我在原始 C 版本中所拥有的,但显然fgets
不适ifstream
用于我正在使用的。这是代码:
void contacts:: readfile(contacts*friends ,int* counter, int i,char buffer[],char user_entry3[])
{
ifstream read;
read.open(user_entry3,ios::in);
int len;
contacts temp;
*counter=0;
i=0;
while (!read.eof()) {
temp.First_Name=(char*)malloc(36);
temp.Last_Name=(char*)malloc(36);
read>>temp.First_Name>>temp.Last_Name;
read>>buffer;
len=strlen(buffer);
if(buffer[len-1]=='\n')
buffer[len-1]='\0';
temp.home=(char*)malloc(20);
strcpy(temp.home, buffer);
read>>buffer;
len=strlen(buffer);
if(buffer[len-1]=='\n')
buffer[len-1]='\0';
temp.cell=(char*)malloc(20);
strcpy(temp.cell, buffer);
friends[i].First_Name=(char*)malloc(MAXNAME);
friends[i].Last_Name=(char*)malloc(MAXNAME);
friends[i].home=(char*)malloc(MAXPHONE);
friends[i].cell=(char*)malloc(MAXPHONE);
//adds file content to the structure
strcpy(friends[*counter].First_Name,temp.First_Name);
strcpy(friends[*counter].Last_Name,temp.Last_Name);
strcpy(friends[*counter].home,temp.home);
strcpy(friends[*counter].cell,temp.cell);
(*counter)++;
i++;
}
//closes file and frees memory
read.close();
free(temp.Last_Name);
free(temp.First_Name);
free(temp.home);
free(temp.cell);
}