如何将新字符串名称与 txt 文件中的现有字符串名称进行比较?

How to compare new string name with existing from txt file?

我想在一个搜索名字的投票程序中实现一个简单的功能,如果这个名字已经存在,那么它会显示一个人不能投票的消息。但是我对 txt 文件很困惑。下面的代码不能正常工作,我想了解我需要做什么。 另外,如何找到全名?我认为它只是搜索第一个词

bool searchname(string mainvoter);

int main()
{ 
    ofstream newvoter("voter.txt", ios::app);
    string name;
     cout<<"Enter your name: ";
     getline(cin, name);
     newvoter << name << endl;;
     newvoter.close(); 
     if(searchname(name)){
        cout<<"This person already voted!"<<endl;
     }
     else
        cout<<"Okay!"<<endl;   
 }

bool searchname(string mainvoter)
{
     ifstream voter("voter.txt");
     string name;    
     while (voter >> name ){  
           if (mainvoter == name){
             return 1;
          }
         else
             return 0;
         } 
 }

如果文件中的名字不匹配 mainvoter,您 return false。带有建议更改的代码注释:

bool searchname(const std::string& mainvoter) // const& instead of copying the string.
{                                             // It's not strictly needed, but is often
                                              // more effective.
    std::ifstream voter("voter.txt");

    if(voter) {                        // check that the file is in a good (and open) state
        std::string name;    
        while(std::getline(voter, name)) { // see notes
            if(mainvoter == name) {        // only return if you find a match
                return true;               // use true instead of 1
            }
        }
    } 
    // return false here, when the whole file has been parsed (or you failed to open it)
    return false;                      // and use false instead of 0
}

其他说明:

  • 您先将选民的姓名放入文件,然后再检查该姓名是否存在于文件中。您需要先检查该名称是否存在,只有当它 存在于文件中时,您才应该将其添加到文件中。

  • 您使用 getline 读取了选民的姓名。 getline 允许空白字符,而您用来从文件中读取的格式化输入 voter >> name 不允许(默认情况下)。因此,如果您输入 "Nastya Osipchuk",您将无法找到匹配项,因为 voter >> name 会在第一次迭代中读取 "Nastya",而在下一次迭代中读取 "Osipchuk"。

  • 如果将searchname函数移动到main上方,就可以避免前向声明。

  • 另请阅读:Why is “using namespace std;” considered bad practice?