C++ 警告 C4800 - 'int' 强制值为 bool 'true' 或 'false' with switch 语句

标签 c++ warnings boolean

在这段代码中,toPurchase 在使用 player->giveOptions() 初始化时从整数转换为 boolean 值(它返回一个整数,而不是一个 boolean 值)非常接近这段代码的末尾。之后,有一个 switch(toPurchase),然后编译器说它不起作用,因为 toPurchase 已转换为 bool。为什么?

int loc = player->giveOptions(4,"Trainers","Market","Inn","Back","");
    int chos;
    bool success = true;
    bool toPurchase = false;
    switch(loc){
    case 1:
        text.push_back("Hello, "+player->name+".");
        if (player->firstTrainerVisit){
            text.push_back("I'm not sure if anyone's told you, but there's been some strange talk about you lately...");
            text.push_back("Hmm... A lot of people are scared of you.");
            text.push_back("Anyway, nice to meet you. I'm Yobbee, the village trainer.");
            text.push_back("You'll need training up before meeting the village elders.");
            text.push_back("Usually, you need to pay to get trained by me, but as a first time bonus I'll teach you for free.");
            text.push_back("After you've been trained, you get a skill point, which you can use to increase one of your abilities.");
        }
        text.push_back("Would you like to be trained today?");
        NPCTalk("Yobbee (Trainer)",text);
        text.clear();
        chos = player->giveOptions(2,"Yes","No","","","");
        switch(chos){
        case 1:
            if(!player->firstTrainerVisit){
                cout << "This will cost 10 gold. Continue?" << endl;
                int purchase = player->giveOptions(2,"Yes","No","","","");
                if(purchase)
                    success = player->spendGold(5);
                else
                    success = false;
            }
            if (success){
                player->awardStat(1,"sp");
                cout << "After a day of vigorous training, you find your skills honed." << endl;
            }else{
                cout << "You don't have enough gold!" << endl;
            }
            if(player->firstTrainerVisit&&success){
                text.push_back("You can use your skill point to increase one of your stats by typing 'sp' any time you are given a choice.");
                text.push_back("There are other commands you can use at any choice opportunity as well - just type 'help' to see this one and others.");
                NPCTalk("Yobbee (Trainer)",text);
                text.clear();
                player->firstTrainerVisit = false;
            }
            break;
        case 2:
            break;
        }
        cout << "\nBack to the entrance to Poglathon..." << endl;
        system("PAUSE");
        Poglathon(text,player);
        break;
    case 2:
        if(player->firstMarketVisit){
            text.push_back("Oh... Hello, "+player->name+".");
            text.push_back("Ignore other people's looks. You'll find out about all this when you meet the Elders.");
            if(!player->firstElderVisit) text.push_back("Oh, you have already? Then I don't feel guilty about not explaining.");
            text.push_back("Here, at the market, you can buy new equipment for your travels, such as food, weapons and armour.");
            text.push_back("You don't have any gold at the moment, but as a standard first-time visit we will issue you with some leather armour and a rusty dagger.");
            text.push_back("Not the best of items, but it'll certainly help!");
            text.push_back("The weapon and armour are now in your backpack. To equip items in your backpack, when you are given an option type 'backpack'.");
            player->addToBackpackIfSpace("Rusty dagger");
            player->addToBackpackIfSpace("Leather armour");
            NPCTalk("Market Manager",text);
            text.clear();
            player->firstMarketVisit = false;
        }
        cout << "Do you want to purchase anything at the market?" << endl;
        toPurchase = player->giveOptions(2,"Yes","No","","","");
        switch(toPurchase){
        case 1:
            cout << "You can't purchase anything yet. NOOB" << endl;
            break;
        case 2:
            break;
        }
        cout << "\nBack to the entrance to Poglathon..." << endl;
        system("PAUSE");
        Poglathon(text,player);
        break;
    }

最佳答案

你打开 toPurchase,它实际上是 boolean 值(在第 4 行声明为 boolean 值)

关于C++ 警告 C4800 - 'int' 强制值为 bool 'true' 或 'false' with switch 语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5448378/

相关文章:

c++ - 将 STL priority_queue 与 greater_equal 比较器类一起使用

c - 将整数分配给枚举时如何收到警告?

c++ - !std::basic_ios::fail() 和 std::basic_ios::good() 有什么区别?

ocaml - 避免警告 "Warning 21: this statement never returns (or has an unsound type.)"

c - .c 扩展名与 .C 扩展名

php - $foo === TRUE 和 TRUE === $foo 有什么区别

swift - 检查可选 boolean 值

jaxb marshall boolean 值作为整数 (0,1) 问题

c++ - 在类构造函数中初始化引用变量

c++ - 为什么当我用时间播种生成器时,我总是得到相同的第一个数字?