我是一名C#程序员,最近想深入研究更低级别的内容,所以上周开始学习C ++,但偶然发现了我认为相当简单的事情。
我在程序中输入以下字符串:
“这是对此测试的测试”并且期望wordStructList包含4个单词的列表,其中“test”和“this”的出现设置为2.然而,调试时,字符串比较(我试过了)无论比较是否为真,.compare和==)似乎总是增加出现的值。
e.g。 currentName =“是” word =“this”
但事件仍然增加。
#include "stdafx.h"
using std::string;
using std::vector;
using std::find;
using std::distance;
struct Word
{
string name;
int occurrences;
};
struct find_word : std::unary_function<Word, bool>
{
string name;
find_word(string name):name(name) { }
bool operator()(Word const& w) const
{
return w.name == name;
}
};
Word GetWordStruct(string name)
{
Word word;
word.name = name;
word.occurrences = 1;
return word;
}
int main(int argc, char argv[])
{
string s;
string delimiter = " ";
vector<string> wordStringList;
getline(std::cin, s);
do
{
wordStringList.push_back(s.substr(0, s.find(delimiter)));
s.erase(0, s.find(delimiter) + delimiter.length());
if (s.find(delimiter) == -1)
{
wordStringList.push_back(s);
s = "";
}
} while (s != "");
vector<Word> wordStructList;
for (int i = 0; i < wordStringList.size(); i++)
{
Word newWord;
vector<Word>::iterator it = find_if(wordStructList.begin(), wordStructList.end(), find_word(wordStringList[i]));
if (it == wordStructList.end())
wordStructList.push_back(GetWordStruct(wordStringList[i]));
else
{
string word(wordStringList[i]);
for (vector<Word>::size_type j = 0; j != wordStructList.size(); ++j)
{
string currentName = wordStructList[j].name;
if(currentName.compare(word) == 0);
wordStructList[j].occurrences++;
}
}
}
return 0;
}
我希望这个问题有道理。有人对此有所了解吗?我也对任何有关如何使代码更敏感/可读的提示持开放态度。感谢
答案 0 :(得分:7)
问题是在if
声明之后的分号:
if(currentName.compare(word) == 0);
分号终止语句,所以下一行
wordStructList[j].occurrences++;
不再是if
语句的一部分,将永远执行。