【发布时间】:2016-02-25 07:31:25
【问题描述】:
对于作业,我必须从包含目录列表的文本文件中删除一行。用户输入文件名并且必须删除包含文件名的目录。对于作业,我必须使用 char 数组。我遇到一个问题,strcmp 在应该返回 0 时返回 -13,但这只发生在应该删除的行之后还有另一行时。这里有问题的代码:
void deleteSong()
{
char userSongName[ENTRY_SZ], objectSongName[ENTRY_SZ];
cout << "Enter the name of a song you want to delete.\n";
cin.getline(userSongName, ENTRY_SZ);
Node* tempNode = musicList.GetFirstNode();
for (int n = 0; n < musicList.GetListLength(); n++)
{
strncpy(objectSongName, static_cast<Song*>(tempNode->data_)->GetSongName(), ENTRY_SZ);
cout << strcmp(userSongName, objectSongName) << endl;
if (!strcmp(userSongName, objectSongName))
{
ifstream songFileDir;
ofstream tempFileDir;
songFileDir.open(Song::songListFile_);
tempFileDir.open("temp.txt");
while (songFileDir.getline(userSongName, ENTRY_SZ))
{
if (!userSongName[0] == '\0')
{
if (strcmp(strrchr(userSongName, '\\') + 1, objectSongName))
{
tempFileDir << userSongName << endl;
}
}
}
songFileDir.close();
songFileDir.clear(ios_base::goodbit);
tempFileDir.close();
tempFileDir.clear(ios_base::goodbit);
remove(Song::songListFile_);
rename("temp.txt", Song::songListFile_);
musicList.RemoveThisLink(tempNode); //This calls a function that removes the node from the linked list.
delete tempNode;
return;
}
tempNode = tempNode->next_;
}
cout << "Song was not found.\n";
return;
}
【问题讨论】:
-
您是否尝试使用打印或任何调试器进行调试?
-
我已经尝试调试,让它输出它正在比较的两个东西,在用户看来它们应该是相同的,但对程序来说却不是。
-
打印
strlen的结果。我确定长度不同。 -
我有几点意见:你应该使用 std:string;你应该使用 stricmp。
-
@spartin503 简单提示:如果打印出用于调试的字符串,总是将它们括在引号中,这样您就可以看到空格! (比如
cerr << "'" << variable << "'" << endl;)养成这个习惯,省去几个小时的痛苦……