C ++编译错误:ISO C ++禁止比较指针和整数 [英] c++ compile error: ISO C++ forbids comparison between pointer and integer

查看:219
本文介绍了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)?\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 ++禁止比较指针和整数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆