- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在使用 Visual Studio 2017 编译器的 Windows 10 操作系统上使用 C++ 17。
我正在尝试设置一个带有 do-while 循环和用户输入的菜单系统(一年后总是很痛苦)。当我执行这些操作时,如果输入的类型不正确,我会在“else”语句中发出警告。
我运行这段代码时以为它会在启动前死机或完美运行,但当我在 itemMenu() 函数中输入数字 2 并立即被踢入该函数的 else 语句时感到惊讶。我做了一些调试并确认 if 语句都返回 true。那么,我如何转而使用 else 语句呢?
我对关键的 if 语句使用了 lambda 表达式,并测试了 f 的值,实际上是 if 语句,为真。我不经常使用这些,在调试期间我收到关于它的奇怪通知:
Menu.cpp
<...>\menu.cpp(94): warning C4805: '==': unsafe mix of type 'int' and type 'bool' in operation
<...>\menu.cpp(97): warning C4805: '==': unsafe mix of type 'int' and type 'bool' in operation
<...>\menu.cpp(86): warning C4715: '<lambda_6de01b1fefb73a14272db9ac7503c22b>::operator()': not all control paths return a value
<...>\Desktop\startingOver\Debug\startingOver.exe
这听起来可能是我的 lambda 表达式有问题,但更有可能是需要清除 cin 标志。我也试过了(可能不正确),但没有解决问题。有什么问题吗?这是我的代码:
//Menu.h
#pragma once
#include <iostream>
#include <string>
#include "Player.h"
#include "Item.h"
#include "MoveCommand.h"
using namespace std;
class Menu
{
public:
Menu();
~Menu();
static void mainMenu(Player * player);
static void itemMenu(Player * player);
static void hud(Player * player);
};
和
//Menu.cpp
#include "Menu.h"
Menu::Menu()
{
}
Menu::~Menu()
{
}
void Menu::mainMenu(Player * player)
{
char input;
// do and keep doing while input is bad
do {
cout << "What to do? (W: go north; S: go south; A: go west: D: go east; I: inventory ";
cin >> input;
if (toupper(input) == 'W')
{
MoveCommand * cmd = new MoveCommand(0, -1);
break;
}
else if (toupper(input) == 'S')
{
MoveCommand * cmd = new MoveCommand(0, 1);
break;
}
else if (toupper(input) == 'A')
{
MoveCommand * cmd = new MoveCommand(-1, 0);
break;
}
else if (toupper(input) == 'D')
{
MoveCommand * cmd = new MoveCommand(1, 0);
break;
}
else if (toupper(input) == 'I')
{
itemMenu(player);
break;
}
else {
cout << "Not an option, enter another input... " << endl;
system("pause");
}
system("CLS");
} while (toupper(input) != 'W' &&
toupper(input) != 'S' &&
toupper(input) != 'A' &&
toupper(input) != 'D' &&
toupper(input) != 'I');
system("cls");
}
void Menu::itemMenu(Player * player)
{
//All this first part does is draw a figure on the screen:
//----------------------------------------------
cout << "INVENTORY: " << endl;
for (int i = 0; i < 10; i++)
{
// if inventory location is null:
if (player->inventory[i], NULL) {
cout << "[ ]";
}
else
cout << "[ i ]";
}
cout << endl;
for (int i = 1; i <= 10; i++) cout << " " << i << " ";
cout << endl;
//------------------------------------------------
char input;
// I made this lambda function to facilitate the test the user input is a digit from 1 to 10.
// it is possible that this is a problem, even though debug says this value returns true (see note/test below)
auto f = [](char in) {for (int i = 1; i <= 10; i++) {
if (in == i) return true;
else
return false;
}};
// do and keep doing until choice is to quit
do {
cout << "Pick a slot: (Enter a number 1:10, or 'Q' to exit. ";
cin >> input;
if (toupper(input) == 'Q') break;
//bool both = (isdigit(input) == true && f(input) == true); // testing if value, which is true in debug tests...
// ... and yet we never see anything inside this block--I even did a pause, which works everywhere else, but
// the program is jumping to the else (wrong input) statment
if (isdigit(input) == true && f(input) == true) {
cout << "succesfully accessed " << input << "th inventory item" << endl;
system("pause");
}
else
cout << "(Inventory Else) Not an option, enter another input..." << endl; // I appended (Inventory Else) to confirm we go here
system("pause");
system("cls");
} while (toupper(input) != 'Q' && f(input) == false);
system("cls");
}
void Menu::hud(Player * player)
{
}
和
//Main.cpp
#pragma once
#include <iostream>
#include <string>
#include "Player.h"
#include "Command.h"
#include "MoveCommand.h"
#include "Event.h"
#include "Item.h"
#include "Tile.h"
#include "Menu.h"
int main() {
Player player;
//game loop
while (1) {
Menu::mainMenu(&player);
}
return 0;
}
编辑:我忘记了这个重要的拼图:
//Player.h
class Player
{
private:
int _x;
int _y;
public:
Item *inventory[10];
Player();
//~Player();
//methods
int getX();
int getY();
void move(int x, int y);
};
请注意,如果我应该知道更好的方法来做任何事情(比如正则表达式或 try/throw/catch 或其他任何东西),我宁愿相信我知道怎么做。
最佳答案
看来你在混0
和 '0'
.也就是说,值 0 和字符 0。第一个是 int
, 第二个是 char
. C++ 会做一些转换,所以 '0'+2 == '2'
,但重要的是'0'+'2' != '2'
.
因此,lambda 中的循环应该从 char i = '0'
开始运行至 i <= '9'
.并不是说它真的很重要。你错过了 std::isdigit(c)
.
您的另一个问题是 isdigit(input) == true
.这是一个反模式。在 C++ 中,您不与 bool 值进行比较。它可能会因 isdigit(c)
而失败,在 c
时返回一个非零数是一个数字。 isdigit('5')
很有可能返回 '5'
, 和 isdigit('0')
返回 '0'
.是的,我说了一个非零数字,但是 '0'
是一个非零数。 isdigit('C')
将始终返回 0
(数字,不是字符)。
关于C++ if语句使用lambda表达式返回true但输出来自false,为什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58013998/
这个问题在这里已经有了答案: Why in Python does "0, 0 == (0, 0)" equal "(0, False)"? (7 个回答) 去年关闭。 代码片段 1: a = Tru
Integer i = 127; Integer j = 127; System.out.println(i == j); System.out.println(i.equals(j)); Integ
我试图用 Python 进行类似下面的代码的比较,但对产生的输出感到困惑。 谁能解释为什么输出是这样的? >>> True, True == True, True (True, True, True)
我们的下拉值是动态的 010100。 你能帮我将这些值转换为 true、false 吗? Offer的值是10100,Reject的值是10111。所以这些需要转换成 10100 = true,fal
我正在测试,如果用户在页面顶部显示一种货币“EUR”和另一种货币“GBP”,那么我期望包含文本“EUR”和页面下方还存在另一个包含文本“GBP”的链接。它包含在一个名为 "nav-tabs au-ta
如何检查数组的所有元素是真值还是假值。 因为以下内容似乎没有做到这一点:_.all([true, true, true], true); 它返回:false? 最佳答案 您应该重新阅读_.every(
C#:我有一个如下所示的字符串变量: string a = "(true and true) or (true or false)"; 这可以是任何东西,它可以变得更复杂,比如: string b
ruby : true == true == true syntax error, unexpected tEQ 对比JavaScript: true == true == true // => tr
这个问题已经有答案了: Equality of truthy and falsy values (JavaScript) (3 个回答) Which equals operator (== vs ==
为什么 R 中的 TRUE == "TRUE" 是 TRUE? R 中是否有与 === 等效的内容? 更新: 这些都返回FALSE: TRUE == "True" TRUE == "true" TRU
简单的查询,可能不可能,但我知道那里有一些聪明的人:) 给定一个 bool 参数,我希望定义我的 where 子句来限制特定列的输出 - 或不执行任何操作。 因此,给定参数@bit = 1,结果将是:
编写 Excel 公式时,将值设置为 true、“true”还是 true() 是否有区别? 换句话来说,以下哪一个是最好的?还是要看具体情况? if (A1 = 1, true, false) if
如果我们评估这个:TRUE AND TRUE,为什么会这样? 'yes' : 'no' 等于 TRUE 但不等于 yes 何时评估:(TRUE AND TRUE) ? 'yes' : 'no' 等于
这个问题在这里已经有了答案: Behaviour of and operator in javascript [duplicate] (1 个回答) 关闭 7 年前。 如题所说,我不太明白为什么(t
我有一个包含 FromDate 、 ToDate 、 VendorName 和 GoodsName 的表单,一旦一切为真,我需要显示结果 示例: FromDate="11/20/2019"、ToDat
我最近参加了 Java 的入门测试,这个问题让我很困惑。完整的问题是: boolean b1 = true; boolean b2 = false; if (b2 != b1 != b2) S
我有一个模型,我有: ipv4_address = models.IPAddressField(verbose_name=_('ipv4 address'), blank=True, null=Tru
False in [True,True] False in pd.Series([True,True]) 第一行代码返回False第二行代码返回 True! 我想我一定是做错了什么或者遗漏了什么。当我
我可以在 Coq 中证明以下内容吗? Lemma bool_uip (H1 : true = true): H1 = eq_refl true. 即true = true 的所有证明都相同吗? 例如
如果我的理解是正确的,他们做的事情完全一样。为什么有人会使用“for”变体?仅仅是味道吗? 编辑:我想我也在考虑 for (;;)。 最佳答案 for (;;) 通常用于防止编译器警告: while(
我是一名优秀的程序员,十分优秀!