尝试将字符串变量转换为 bool 结果 "true" & "false" 都等于 0

Attempt to convert string variable to bool results in "true" & "false" both equal to 0

我是 C++ 的新手,我可能遗漏了一些小东西,但我已经盯着它看太久了,非常感谢您的帮助。

我正在做一项作业,其中程序从 CSV 文件中读取数据。首先,我使用 getline() 将所有数据作为字符串导入,因为这是我知道的唯一方法。导入后,我想(正在尝试)将采用 "TRUE" 和 "FALSE" 的字符串变量转换为 bool 类型。

CSV 文件包含:

name,color,age,wild,home,endagered
Foo,brown,3,TRUE,Malaysia,FALSE

下面是我的代码。我意识到这可能非常低效,但我正在学习,所以......它就是这样。

这里是转换函数(应该可以处理文件中的错误):

void stringBool(const string & temp, bool newVar)
{
    const string fc = "FALSE";
    const string fl = "false";
    const string tc = "TRUE";
    const string tl = "true";

    try {
        if (temp==fc || temp==fl)
        {
            newVar = false;
        }
        else if (temp==tc || temp==tl)
        {
            newVar = true;
        }
        else
        {
            throw temp;
        }
    } catch (string e) {
        cout << newVar << " = " << e << " is not in the correct format. Check your file and try again." << endl;
        exit(1);
    }
};

这里是 class 的读入成员函数。如果重要的话,它是派生 class 中的虚函数。 (不想用不太相关的代码淹没 post,但如果您想查看它,请告诉我。)

void readIn(std::string filename)
    {
        ifstream myFileStream(filename);

        //Error if file fails to open
        if(!myFileStream.is_open())
        {
            cout << "File failed to open" << endl;
            exit(1);
        }

        //Temporary strings to import
        string ag, wld, endg;
        string myString, line;

        //Read in data
        getline(myFileStream, line); //Skip first line
        while(getline(myFileStream, line))
        {
            stringstream ss(line);
            getline(ss, name, ',');
            getline(ss, color, ',');
            getline(ss, ag, ',');
            getline(ss, wld, ',');
            getline(ss, home, ',');
            getline(ss, endg, ',');
        }
        myFileStream.close();

        //Convert variables from string to appropriate form
        stringBool(wld, wild);
        stringBool(endg, endanger);
        age = stoi(ag);

        //Print variables to check
    cout <<  name << endl << color << endl << age << endl << wild << endl << home << endl << endanger << endl;

    //Print temporary variables
    cout << wld << endl;
    cout << endg << endl;
    };

当我实际调用 main 中的函数时,输出是:

Foo
brown
3
0
Malaysia
0
TRUE
FALSE

因此,即使数据已正确导入(字符串正确 - wld=TRUEendg=FALSE),wildendanger 都是 0。

如果有任何帮助,我将不胜感激。谢谢。

这里:

void stringBool(const string & temp, bool newVar)
{

您正在按值传递 newVar。如果你想更改newVar来更改相应函数中的值,应该是参考:

void stringBool(const string & temp, bool& newVar)
{

或者,只需 return 值:

bool stringBool(const std::string& temp) {
    if(temp == "true" || temp == "TRUE") return true;
    if(temp == "false" || temp == "FALSE") return false;
    throw std::invalid_argument("Input '" + temp + "' should be either 'true' or 'false'");
} 

您可以通过包含 <stdexcept>

找到 std::invalid_argument

首先,如果您是 "using namespace std",那通常被认为是一种不好的做法。 其次,如果您想将传入的变量更改为函数,则将该变量作为引用传入。像这样:

bool& newVar