再次打开时,C++ 会覆盖文本文件

标签 c++ text-files overwrite

这个程序应该打开一个 txt 文件,记录两个不同问题的答案,关闭文件,然后在一个名为 accumulatingFunction 的函数中重新打开它,以便计算每个问题的答案。

我已经设法让它工作,但我的问题是,当我关闭程序时,每个答案会有 3 个实例,但是当我打开程序并为每个问题添加 1 个答案时,它仍然会说我有 3 个那个答案的实例。

我假设它覆盖了已经存在的答案之一,而且我一辈子都想不出如何让它停止。 (另外,现在 accumulatingFunction 只检查每个问题的第一个答案。我想在添加其余部分之前确保这是可能的。或者我想也许你们会有另一种方法来做到这一点。)

#include<iostream>
#include<string>
#include<fstream>
using namespace std;

double userInput = 0;
string ethnicityQuestion();
void validationFunction(int);
string politicalQuestion();
void accumulatingFunction();



//-----------------------------------------------------------------------------------------------

int main()
{
    string ethnicityAnswer, politicalAffiliationAnswer, userID;
    fstream answerFile;

answerFile.open("F:\\midTermFile.txt");



if (!answerFile)
    cout << "You have a file read error" <<endl;


while (userID != "done")
{

ethnicityAnswer = ethnicityQuestion();
system("cls");

politicalAffiliationAnswer = politicalQuestion();
system("cls");


answerFile << ethnicityAnswer << endl;
answerFile << politicalAffiliationAnswer << endl;

cout << "you made it back to the main function and you chose " << ethnicityAnswer << " as your ethnicity\n"<< endl;
cout << "you made it back to the main function and you chose " << politicalAffiliationAnswer << " as your political affiliation\n"<< endl;

accumulatingFunction();

cout << "Please enter your user ID:  ";
cin >> userID;

}
answerFile.close();


return 0;
}

//-----------------------------------------------------------------------------------------------

string ethnicityQuestion()
{

    string ethnicity;
    int selection = 6;

string A = "Native_American";
string B = "Asian";
string C = "African American";
string D = "Hispanic/Latino";
string E = "Caucasion";
string F = "Other";

cout << "What ethnicity do you claim?\n";
cout << "1. Native American\n";
cout << "2. Asian\n";
cout << "3. African American\n";
cout << "4. Hispanic/Latino\n";
cout << "5. Caucasion\n";
cout << "6. Other\n";

validationFunction(selection);


if (userInput == 1)
    ethnicity = A;
else if (userInput == 2)
    ethnicity = B;
else if (userInput == 3)
    ethnicity = C;
else if (userInput == 4)
    ethnicity = D;
else if (userInput == 5)
    ethnicity = E;
else if (userInput == 6)
    ethnicity = F;

return ethnicity;
}

//------------------------------------------------------------------------------------------------

string politicalQuestion()
{
    string affiliation; 
    int selection = 6;

string A = "Very_Conservative";
string B = "Moderately Conservative";
string C = "Very Liberal";
string D = "Moderately Liberal";
string E = "Neither";
string F = "In the Middle";

cout << "On most political issues, which of the following do you associate with most:\n";
cout << "1. Very Conservative\n";
cout << "2. Moderately Conservative\n";
cout << "3. Very Liberal\n";
cout << "4. Moderatly Liberal\n";
cout << "5. Neither\n";
cout << "6. In the Middle\n";

validationFunction(selection);


if (userInput == 1)
    affiliation = A;
else if (userInput == 2)
    affiliation = B;
else if (userInput == 3)
    affiliation = C;
else if (userInput == 4)
    affiliation = D;
else if (userInput == 5)
    affiliation = E;
else if (userInput == 6)
    affiliation = F;

return affiliation;
}

//-----------------------------------------------------------------------------------

void validationFunction(int choiceAmount)
{
    while ((!(cin >> userInput)) || (userInput > choiceAmount || userInput < 1))
    {                       
        cin.clear();
        cin.ignore(INT_MAX, '\n');
        cout << "Please enter a number between 1 and 6: ";
    }
}

//------------------------------------------------------------------------------------------------

void accumulatingFunction()
{
    string userAnswer;
    double nativeAmerican = 0, veryConservative = 0;



    ifstream countFile;
    countFile.open("F:\\midTermFile.txt");



    while (!countFile.eof()) 
        {countFile >> userAnswer;

            if (userAnswer == "Native_American")
                nativeAmerican += 1;
            else if (userAnswer == "Very_Conservative")
                    veryConservative += 1;
            userAnswer = "";
        }
            cout << nativeAmerican << endl;
            cout << veryConservative << endl;

        countFile.close();
}

最佳答案

您的问题是您没有传递给 fstream::open 的参数。你必须通过 fstream::out | fstream::app 作为您的第二个参数。

另见 the fstream::open reference .

此外,由于您不是在 main() 中读取文件,因此您应该使用 ofstream 而不是 fstream

关于再次打开时,C++ 会覆盖文本文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9776996/

相关文章:

c++ - 在 linux(raspbian)中,opencv set(CV_CAP_PROP_FPS, 60) 不工作

c++ - VS 2013 errorC3861 PeekMessage等和errorC2065 WNDCLASSEX

python - 将文本文件中的行追加到列表中时,会将整行设置为字符串。如何识别文本文件中的不同数据类型?

c++ - 在 C++ 中读取文件最后一行的最有效方法是什么?

java - 如何在覆盖文件之前检查文件是否为空?

hadoop - 覆盖HDFS中的目录

C++ 创建类对象时何时使用new关键字

c++ - 将非常量的地址分配给常量指针

Python 错误 : could not convert string to float

javascript - 如何防止 2 个 js 文件在我的 HTML 代码中被覆盖?