c++ compile error: ISO C++ forbids comparison between pointer and integer(c++ 编译错误:ISO C++ 禁止指针和整数之间的比较)
问题描述
我正在尝试 Bjarne Stroustrup 的 C++ 书籍第三版中的一个示例.在实现一个相当简单的函数时,我得到以下编译时错误:
I am trying an example from Bjarne Stroustrup's C++ book, third edition. While implementing a rather simple function, I get the following compile time error:
error: ISO C++ forbids comparison between pointer and integer
可能是什么原因造成的?这是代码.错误在 if 行:
What could be causing this? Here is the code. The error is in the if line:
#include <iostream>
#include <string>
using namespace std;
bool accept()
{
cout << "Do you want to proceed (y or n)?
";
char answer;
cin >> answer;
if (answer == "y") return true;
return false;
}
谢谢!
推荐答案
您有两种方法可以解决此问题.首选方法是使用:
You have two ways to fix this. The preferred way is to use:
string answer;
(而不是 char).另一种可能的修复方法是:
(instead of char). The other possible way to fix it is:
if (answer == 'y') ...
(注意单引号而不是双引号,代表一个 char 常量).
(note single quotes instead of double, representing a char constant).
这篇关于c++ 编译错误:ISO C++ 禁止指针和整数之间的比较的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:c++ 编译错误:ISO C++ 禁止指针和整数之间的比较
基础教程推荐
- 我应该对 C++ 中的成员变量和函数参数使用相同的名称吗? 2021-01-01
- 为什么派生模板类不能访问基模板类的标识符? 2021-01-01
- 通过引用传递 C++ 迭代器有什么问题? 2022-01-01
- 为什么 RegOpenKeyEx() 在 Vista 64 位上返回错误代码 2021-01-01
- CString 到 char* 2021-01-01
- 为什么 typeid.name() 使用 GCC 返回奇怪的字符以及如 2022-09-16
- 如果我为无符号变量分配负值会发生什么? 2022-01-01
- 初始化列表*参数*评估顺序 2021-01-01
- 非静态 const 成员,不能使用默认赋值运算符 2022-10-09
- GDB 显示调用堆栈上函数地址的当前编译二进制文 2022-09-05
